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