C:
char c = '\u1294';
printf("%c\n", c); // Output: ኔ
JavaScript:
const char = '\u1294';
console.log(char); // Output: ኔ
Java:
char c = '\u1294';
System.out.println(c); // Output: ኔ
JSON:
{"text": "\u1294"} // Value: ኔ
Python:
char = '\u1294'
print(char) # Output: ኔ
Perl:
my $char = "\x{1294}";
print $char; # Output: ኔ
PHP:
$char = "\x{1294}";
echo $char; // Output: ኔ
Ruby:
char = "\u{1294}"
puts char # Output: ኔ
Rust:
let c = '\u{1294}';
println!("{}", c); // Output: ኔ
Go:
char := '\u1294'
fmt.Printf("%c\n", char) // Output: ኔ
CSS:
/* CSS content property */
.element::before {
content: "\001294"; /* 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%94
MD5:
80b2ebff7fad83095ac08acc1b04b1e5
SHA1:
eb22ce44f52f8a6971c7565a14cc24fd0579208a
Base64:
4YqU