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