C:
char c = '\u1321';
printf("%c\n", c); // Output: ጡ
JavaScript:
const char = '\u1321';
console.log(char); // Output: ጡ
Java:
char c = '\u1321';
System.out.println(c); // Output: ጡ
JSON:
{"text": "\u1321"} // Value: ጡ
Python:
char = '\u1321'
print(char) # Output: ጡ
Perl:
my $char = "\x{1321}";
print $char; # Output: ጡ
PHP:
$char = "\x{1321}";
echo $char; // Output: ጡ
Ruby:
char = "\u{1321}"
puts char # Output: ጡ
Rust:
let c = '\u{1321}';
println!("{}", c); // Output: ጡ
Go:
char := '\u1321'
fmt.Printf("%c\n", char) // Output: ጡ
CSS:
/* CSS content property */
.element::before {
content: "\001321"; /* 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%A1
MD5:
66628f24cca7ddfdc7b843da1c8bed1d
SHA1:
21e4b97cd9cb20e5a7121b9cd77d22a25a945365
Base64:
4Yyh