C:
char c = '\u1281';
printf("%c\n", c); // Output: ኁ
JavaScript:
const char = '\u1281';
console.log(char); // Output: ኁ
Java:
char c = '\u1281';
System.out.println(c); // Output: ኁ
JSON:
{"text": "\u1281"} // Value: ኁ
Python:
char = '\u1281'
print(char) # Output: ኁ
Perl:
my $char = "\x{1281}";
print $char; # Output: ኁ
PHP:
$char = "\x{1281}";
echo $char; // Output: ኁ
Ruby:
char = "\u{1281}"
puts char # Output: ኁ
Rust:
let c = '\u{1281}';
println!("{}", c); // Output: ኁ
Go:
char := '\u1281'
fmt.Printf("%c\n", char) // Output: ኁ
CSS:
/* CSS content property */
.element::before {
content: "\001281"; /* 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%81
MD5:
6087f3dd0e1eb62b37fb6303c15bfff2
SHA1:
250e6389fcd6fdcce1b01c2b025a8bb4365003ba
Base64:
4YqB