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