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