C:
char c = '\u0039';
printf("%c\n", c); // Output: 9
JavaScript:
const char = '\u0039';
console.log(char); // Output: 9
Java:
char c = '\u0039';
System.out.println(c); // Output: 9
JSON:
{"text": "\u0039"} // Value: 9
Python:
char = '\u0039'
print(char) # Output: 9
Perl:
my $char = "\x{0039}";
print $char; # Output: 9
PHP:
$char = "\x{0039}";
echo $char; // Output: 9
Ruby:
char = "\u{0039}"
puts char # Output: 9
Rust:
let c = '\u{39}';
println!("{}", c); // Output: 9
Go:
char := '\u0039'
fmt.Printf("%c\n", char) // Output: 9
CSS:
/* CSS content property */
.element::before {
content: "\000039"; /* Display: 9 */
}
HTML Decimal:
<p>HTML decimal: 9</p> <!-- Display: 9 -->
HTML Hexadecimal:
<p>HTML hex: 9</p> <!-- Display: 9 -->
URL Encoding:
// 9 URL encoding
https://unicodefinder.com/search.php?query=9
MD5:
45c48cce2e2d7fbdea1afc51c7c6ad26
SHA1:
0ade7c2cf97f75d009975f4d720d1fa6c19f4897
Base64:
OQ==