C:
char c = '\u12D4';
printf("%c\n", c); // Output: ዔ
JavaScript:
const char = '\u12D4';
console.log(char); // Output: ዔ
Java:
char c = '\u12D4';
System.out.println(c); // Output: ዔ
JSON:
{"text": "\u12D4"} // Value: ዔ
Python:
char = '\u12D4'
print(char) # Output: ዔ
Perl:
my $char = "\x{12D4}";
print $char; # Output: ዔ
PHP:
$char = "\x{12D4}";
echo $char; // Output: ዔ
Ruby:
char = "\u{12D4}"
puts char # Output: ዔ
Rust:
let c = '\u{12D4}';
println!("{}", c); // Output: ዔ
Go:
char := '\u12D4'
fmt.Printf("%c\n", char) // Output: ዔ
CSS:
/* CSS content property */
.element::before {
content: "\0012D4"; /* 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%8B%94
MD5:
1533355388f928b0d9614ccb69513960
SHA1:
4db8108e2a24bed52c89d888135738bd1ff3bdb9
Base64:
4YuU