( convert_number )

Legend
Has corresponding code
No direct match, but an alternative exists
No corresponding code
-TODO
( .. )Not localized
Example Python
pytest
C++
GoogleTest
Swift
Testing
Kotlin
jUnit
Bash
bats
( octal_literal ) 0o755 - - - -
( hex_literal ) 0xFF - - - -
( parse_oct ) int('755', 8) - - - -
( parse_hex ) int('FF', 16) - - - -
( format_oct ) oct(n) / format(n, 'o') - - - -
( format_hex ) hex(n) / format(n, 'X') - - - -