C:
char c = '\u1314';
printf("%c\n", c); // Output: ጔ
JavaScript:
const char = '\u1314';
console.log(char); // Output: ጔ
Java:
char c = '\u1314';
System.out.println(c); // Output: ጔ
JSON:
{"text": "\u1314"} // Value: ጔ
Python:
char = '\u1314'
print(char) # Output: ጔ
Perl:
my $char = "\x{1314}";
print $char; # Output: ጔ
PHP:
$char = "\x{1314}";
echo $char; // Output: ጔ
Ruby:
char = "\u{1314}"
puts char # Output: ጔ
Rust:
let c = '\u{1314}';
println!("{}", c); // Output: ጔ
Go:
char := '\u1314'
fmt.Printf("%c\n", char) // Output: ጔ
CSS:
/* CSS content property */
.element::before {
content: "\001314"; /* 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%94
MD5:
abdbfc64493c8c102f33c3111331c9b9
SHA1:
a33114b96fce57e61efed2228c51b2bf5545ad06
Base64:
4YyU