C:
char c = '\u128D';
printf("%c\n", c); // Output: ኍ
JavaScript:
const char = '\u128D';
console.log(char); // Output: ኍ
Java:
char c = '\u128D';
System.out.println(c); // Output: ኍ
JSON:
{"text": "\u128D"} // Value: ኍ
Python:
char = '\u128D'
print(char) # Output: ኍ
Perl:
my $char = "\x{128D}";
print $char; # Output: ኍ
PHP:
$char = "\x{128D}";
echo $char; // Output: ኍ
Ruby:
char = "\u{128D}"
puts char # Output: ኍ
Rust:
let c = '\u{128D}';
println!("{}", c); // Output: ኍ
Go:
char := '\u128D'
fmt.Printf("%c\n", char) // Output: ኍ
CSS:
/* CSS content property */
.element::before {
content: "\00128D"; /* 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%8A%8D
MD5:
294dc576a29fb882317194d69c662933
SHA1:
a95e47a4a38cba443b171be9c8d6a37fa6aea6cc
Base64:
4YqN