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