( convert_number )

凡例
対応コードあり
直接対応していないが代替の書き方あり
対応コードなし
-未確認
( .. )ローカライズまだ
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') - - - -