C:
char c = '\u1295';
printf("%c\n", c); // Output: ን
JavaScript:
const char = '\u1295';
console.log(char); // Output: ን
Java:
char c = '\u1295';
System.out.println(c); // Output: ን
JSON:
{"text": "\u1295"} // Value: ን
Python:
char = '\u1295'
print(char) # Output: ን
Perl:
my $char = "\x{1295}";
print $char; # Output: ን
PHP:
$char = "\x{1295}";
echo $char; // Output: ን
Ruby:
char = "\u{1295}"
puts char # Output: ን
Rust:
let c = '\u{1295}';
println!("{}", c); // Output: ን
Go:
char := '\u1295'
fmt.Printf("%c\n", char) // Output: ን
CSS:
/* CSS content property */
.element::before {
content: "\001295"; /* 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%95
MD5:
28fbea34c49efb60246b310adab074cc
SHA1:
916cc3dff23d42e12d694607027bc607f936dfa2
Base64:
4YqV