C:
char c = '\u10E4';
printf("%c\n", c); // Output: ფ
JavaScript:
const char = '\u10E4';
console.log(char); // Output: ფ
Java:
char c = '\u10E4';
System.out.println(c); // Output: ფ
JSON:
{"text": "\u10E4"} // Value: ფ
Python:
char = '\u10E4'
print(char) # Output: ფ
Perl:
my $char = "\x{10E4}";
print $char; # Output: ფ
PHP:
$char = "\x{10E4}";
echo $char; // Output: ფ
Ruby:
char = "\u{10E4}"
puts char # Output: ფ
Rust:
let c = '\u{10E4}';
println!("{}", c); // Output: ფ
Go:
char := '\u10E4'
fmt.Printf("%c\n", char) // Output: ფ
CSS:
/* CSS content property */
.element::before {
content: "\0010E4"; /* Display: ფ */
}
HTML Decimal:
<p>HTML decimal: ფ</p> <!-- Display: ფ -->
HTML Hexadecimal:
<p>HTML hex: ფ</p> <!-- Display: ფ -->
URL Encoding:
// ფ URL encoding
https://unicodefinder.com/search.php?query=%E1%83%A4
MD5:
0b12979712c1420713d32730a09cafd4
SHA1:
e8ad26b7e0decc9b9f8b33461b7c5844cdbcd86d
Base64:
4YOk