# md5.ok ## Function Outputs a hexadecimal MD5 string of the current digest. ## Syntax ```bt md5(text).ok() ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | String | Returns a 32-digit lowercase hexadecimal digest. | ## Example ```bt result = md5('BT').ok() // Output: 277b18808bb6fba9845a813795fe8baa print result ``` ## Notes - ok, sum, to_string behave consistently.