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