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