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