C:
char c = '\u1290';
printf("%c\n", c); // Output: ነ
JavaScript:
const char = '\u1290';
console.log(char); // Output: ነ
Java:
char c = '\u1290';
System.out.println(c); // Output: ነ
JSON:
{"text": "\u1290"} // Value: ነ
Python:
char = '\u1290'
print(char) # Output: ነ
Perl:
my $char = "\x{1290}";
print $char; # Output: ነ
PHP:
$char = "\x{1290}";
echo $char; // Output: ነ
Ruby:
char = "\u{1290}"
puts char # Output: ነ
Rust:
let c = '\u{1290}';
println!("{}", c); // Output: ነ
Go:
char := '\u1290'
fmt.Printf("%c\n", char) // Output: ነ
CSS:
/* CSS content property */
.element::before {
content: "\001290"; /* 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%90
MD5:
f5ed04a3450e97bbfbff1e46e627f26b
SHA1:
b6dcbebff7be4c760b943bf6b51eea48e610f8d4
Base64:
4YqQ