C:
char c = '\u1331';
printf("%c\n", c); // Output: ጱ
JavaScript:
const char = '\u1331';
console.log(char); // Output: ጱ
Java:
char c = '\u1331';
System.out.println(c); // Output: ጱ
JSON:
{"text": "\u1331"} // Value: ጱ
Python:
char = '\u1331'
print(char) # Output: ጱ
Perl:
my $char = "\x{1331}";
print $char; # Output: ጱ
PHP:
$char = "\x{1331}";
echo $char; // Output: ጱ
Ruby:
char = "\u{1331}"
puts char # Output: ጱ
Rust:
let c = '\u{1331}';
println!("{}", c); // Output: ጱ
Go:
char := '\u1331'
fmt.Printf("%c\n", char) // Output: ጱ
CSS:
/* CSS content property */
.element::before {
content: "\001331"; /* 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%B1
MD5:
9122608e0c9b63dcfab3829052ed9748
SHA1:
8b9772cf3ee5aad8dc369465163db98b76d88aac
Base64:
4Yyx