C:
char c = '\u1293';
printf("%c\n", c); // Output: ና
JavaScript:
const char = '\u1293';
console.log(char); // Output: ና
Java:
char c = '\u1293';
System.out.println(c); // Output: ና
JSON:
{"text": "\u1293"} // Value: ና
Python:
char = '\u1293'
print(char) # Output: ና
Perl:
my $char = "\x{1293}";
print $char; # Output: ና
PHP:
$char = "\x{1293}";
echo $char; // Output: ና
Ruby:
char = "\u{1293}"
puts char # Output: ና
Rust:
let c = '\u{1293}';
println!("{}", c); // Output: ና
Go:
char := '\u1293'
fmt.Printf("%c\n", char) // Output: ና
CSS:
/* CSS content property */
.element::before {
content: "\001293"; /* 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%93
MD5:
169e936f35480810be6c046a78a94f3c
SHA1:
ddf2b458fe83e95d4fc1e434fad85380b146a86b
Base64:
4YqT