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