C:
char c = '\u1291';
printf("%c\n", c); // Output: ኑ
JavaScript:
const char = '\u1291';
console.log(char); // Output: ኑ
Java:
char c = '\u1291';
System.out.println(c); // Output: ኑ
JSON:
{"text": "\u1291"} // Value: ኑ
Python:
char = '\u1291'
print(char) # Output: ኑ
Perl:
my $char = "\x{1291}";
print $char; # Output: ኑ
PHP:
$char = "\x{1291}";
echo $char; // Output: ኑ
Ruby:
char = "\u{1291}"
puts char # Output: ኑ
Rust:
let c = '\u{1291}';
println!("{}", c); // Output: ኑ
Go:
char := '\u1291'
fmt.Printf("%c\n", char) // Output: ኑ
CSS:
/* CSS content property */
.element::before {
content: "\001291"; /* 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%91
MD5:
60d6899ef4e4e2b018a35f6b727bc95e
SHA1:
c6a4978f47ea1501e0cc0555c935564a9bbd9a77
Base64:
4YqR