C:
char c = '\u12B3';
printf("%c\n", c); // Output: ኳ
JavaScript:
const char = '\u12B3';
console.log(char); // Output: ኳ
Java:
char c = '\u12B3';
System.out.println(c); // Output: ኳ
JSON:
{"text": "\u12B3"} // Value: ኳ
Python:
char = '\u12B3'
print(char) # Output: ኳ
Perl:
my $char = "\x{12B3}";
print $char; # Output: ኳ
PHP:
$char = "\x{12B3}";
echo $char; // Output: ኳ
Ruby:
char = "\u{12B3}"
puts char # Output: ኳ
Rust:
let c = '\u{12B3}';
println!("{}", c); // Output: ኳ
Go:
char := '\u12B3'
fmt.Printf("%c\n", char) // Output: ኳ
CSS:
/* CSS content property */
.element::before {
content: "\0012B3"; /* 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%B3
MD5:
b28e85cb2e12e72dee535a30de222a76
SHA1:
267912a6fe128a302a72905b7509c02508c343cf
Base64:
4Yqz