C:
char c = '\u1326';
printf("%c\n", c); // Output: ጦ
JavaScript:
const char = '\u1326';
console.log(char); // Output: ጦ
Java:
char c = '\u1326';
System.out.println(c); // Output: ጦ
JSON:
{"text": "\u1326"} // Value: ጦ
Python:
char = '\u1326'
print(char) # Output: ጦ
Perl:
my $char = "\x{1326}";
print $char; # Output: ጦ
PHP:
$char = "\x{1326}";
echo $char; // Output: ጦ
Ruby:
char = "\u{1326}"
puts char # Output: ጦ
Rust:
let c = '\u{1326}';
println!("{}", c); // Output: ጦ
Go:
char := '\u1326'
fmt.Printf("%c\n", char) // Output: ጦ
CSS:
/* CSS content property */
.element::before {
content: "\001326"; /* 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%8C%A6
MD5:
0ee3c27b8dcf24472f0f72663e3345d9
SHA1:
b2e076951d855e019e6cf2812f05cfa7a53f6ad3
Base64:
4Yym