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