C:
char c = '\u129E';
printf("%c\n", c); // Output: ኞ
JavaScript:
const char = '\u129E';
console.log(char); // Output: ኞ
Java:
char c = '\u129E';
System.out.println(c); // Output: ኞ
JSON:
{"text": "\u129E"} // Value: ኞ
Python:
char = '\u129E'
print(char) # Output: ኞ
Perl:
my $char = "\x{129E}";
print $char; # Output: ኞ
PHP:
$char = "\x{129E}";
echo $char; // Output: ኞ
Ruby:
char = "\u{129E}"
puts char # Output: ኞ
Rust:
let c = '\u{129E}';
println!("{}", c); // Output: ኞ
Go:
char := '\u129E'
fmt.Printf("%c\n", char) // Output: ኞ
CSS:
/* CSS content property */
.element::before {
content: "\00129E"; /* 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%9E
MD5:
3cfcfcfdfab9bf6387a7d53e26a18c3d
SHA1:
ed06fb3cdc76704e26eb461770c3b1089ed75d8b
Base64:
4Yqe