C:
char c = '\u1313';
printf("%c\n", c); // Output: ጓ
JavaScript:
const char = '\u1313';
console.log(char); // Output: ጓ
Java:
char c = '\u1313';
System.out.println(c); // Output: ጓ
JSON:
{"text": "\u1313"} // Value: ጓ
Python:
char = '\u1313'
print(char) # Output: ጓ
Perl:
my $char = "\x{1313}";
print $char; # Output: ጓ
PHP:
$char = "\x{1313}";
echo $char; // Output: ጓ
Ruby:
char = "\u{1313}"
puts char # Output: ጓ
Rust:
let c = '\u{1313}';
println!("{}", c); // Output: ጓ
Go:
char := '\u1313'
fmt.Printf("%c\n", char) // Output: ጓ
CSS:
/* CSS content property */
.element::before {
content: "\001313"; /* 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%93
MD5:
90287c3ade1e72f43f5d7ae5745e5697
SHA1:
591e026bab01e05ad7eaf518f78808d0ebf84580
Base64:
4YyT