strHex

Converts an integer to a hexadecimal string. Takes value (integer to convert). Returns a string containing the hexadecimal representation of the value.

String

Parameters & Returns

Parameters

value Int

Returns

String

Quick Summary

Converts an integer to a hexadecimal string. Takes value (integer to convert). Returns a string containing the hexadecimal representation of the value.

Technical Exegesis...

Returns a string containing the hexadecimal representation of the value, using uppercase letters A-F. The value is treated as an unsigned integer.

Does not include a "0x" prefix. Useful for displaying memory addresses, color values, or debugging numeric data in hexadecimal format.

Example

Example.bam
; No example implemented yet