C:
char c = '\u1304';
printf("%c\n", c); // Output: ጄ
JavaScript:
const char = '\u1304';
console.log(char); // Output: ጄ
Java:
char c = '\u1304';
System.out.println(c); // Output: ጄ
JSON:
{"text": "\u1304"} // Value: ጄ
Python:
char = '\u1304'
print(char) # Output: ጄ
Perl:
my $char = "\x{1304}";
print $char; # Output: ጄ
PHP:
$char = "\x{1304}";
echo $char; // Output: ጄ
Ruby:
char = "\u{1304}"
puts char # Output: ጄ
Rust:
let c = '\u{1304}';
println!("{}", c); // Output: ጄ
Go:
char := '\u1304'
fmt.Printf("%c\n", char) // Output: ጄ
CSS:
/* CSS content property */
.element::before {
content: "\001304"; /* 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%84
MD5:
bbc37314efee24712a3f38d16910c749
SHA1:
23a0928d4c06a9424488f5f7c03ac19fe5885e9f
Base64:
4YyE