C:
char c = '\u1282';
printf("%c\n", c); // Output: ኂ
JavaScript:
const char = '\u1282';
console.log(char); // Output: ኂ
Java:
char c = '\u1282';
System.out.println(c); // Output: ኂ
JSON:
{"text": "\u1282"} // Value: ኂ
Python:
char = '\u1282'
print(char) # Output: ኂ
Perl:
my $char = "\x{1282}";
print $char; # Output: ኂ
PHP:
$char = "\x{1282}";
echo $char; // Output: ኂ
Ruby:
char = "\u{1282}"
puts char # Output: ኂ
Rust:
let c = '\u{1282}';
println!("{}", c); // Output: ኂ
Go:
char := '\u1282'
fmt.Printf("%c\n", char) // Output: ኂ
CSS:
/* CSS content property */
.element::before {
content: "\001282"; /* 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%82
MD5:
0d5edb4daaee07c1a2e4d0a819921233
SHA1:
099eade3210f86010ed232d8e5f1a4ab4791e9fa
Base64:
4YqC