C:
char c = '\u0069';
printf("%c\n", c); // Output: i
JavaScript:
const char = '\u0069';
console.log(char); // Output: i
Java:
char c = '\u0069';
System.out.println(c); // Output: i
JSON:
{"text": "\u0069"} // Value: i
Python:
char = '\u0069'
print(char) # Output: i
Perl:
my $char = "\x{0069}";
print $char; # Output: i
PHP:
$char = "\x{0069}";
echo $char; // Output: i
Ruby:
char = "\u{0069}"
puts char # Output: i
Rust:
let c = '\u{69}';
println!("{}", c); // Output: i
Go:
char := '\u0069'
fmt.Printf("%c\n", char) // Output: i
CSS:
/* CSS content property */
.element::before {
content: "\000069"; /* 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:
865c0c0b4ab0e063e5caa3387c1a8741
SHA1:
042dc4512fa3d391c5170cf3aa61e6a638f84342
Base64:
aQ==