C:
char c = '\u1322';
printf("%c\n", c); // Output: ጢ
JavaScript:
const char = '\u1322';
console.log(char); // Output: ጢ
Java:
char c = '\u1322';
System.out.println(c); // Output: ጢ
JSON:
{"text": "\u1322"} // Value: ጢ
Python:
char = '\u1322'
print(char) # Output: ጢ
Perl:
my $char = "\x{1322}";
print $char; # Output: ጢ
PHP:
$char = "\x{1322}";
echo $char; // Output: ጢ
Ruby:
char = "\u{1322}"
puts char # Output: ጢ
Rust:
let c = '\u{1322}';
println!("{}", c); // Output: ጢ
Go:
char := '\u1322'
fmt.Printf("%c\n", char) // Output: ጢ
CSS:
/* CSS content property */
.element::before {
content: "\001322"; /* 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%A2
MD5:
596754218b302da17f02535caf6759c0
SHA1:
de213f06e38e8b77480c5de970ed34a3b367bfbe
Base64:
4Yyi