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