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