C:
char c = '\u12EC';
printf("%c\n", c); // Output: ዬ
JavaScript:
const char = '\u12EC';
console.log(char); // Output: ዬ
Java:
char c = '\u12EC';
System.out.println(c); // Output: ዬ
JSON:
{"text": "\u12EC"} // Value: ዬ
Python:
char = '\u12EC'
print(char) # Output: ዬ
Perl:
my $char = "\x{12EC}";
print $char; # Output: ዬ
PHP:
$char = "\x{12EC}";
echo $char; // Output: ዬ
Ruby:
char = "\u{12EC}"
puts char # Output: ዬ
Rust:
let c = '\u{12EC}';
println!("{}", c); // Output: ዬ
Go:
char := '\u12EC'
fmt.Printf("%c\n", char) // Output: ዬ
CSS:
/* CSS content property */
.element::before {
content: "\0012EC"; /* 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%AC
MD5:
982ab201b0646d937bd2497d4b5cf083
SHA1:
a076c301f0bddbeba85acd1c230cc2e4233058a8
Base64:
4Yus