C:
char c = '\u132A';
printf("%c\n", c); // Output: ጪ
JavaScript:
const char = '\u132A';
console.log(char); // Output: ጪ
Java:
char c = '\u132A';
System.out.println(c); // Output: ጪ
JSON:
{"text": "\u132A"} // Value: ጪ
Python:
char = '\u132A'
print(char) # Output: ጪ
Perl:
my $char = "\x{132A}";
print $char; # Output: ጪ
PHP:
$char = "\x{132A}";
echo $char; // Output: ጪ
Ruby:
char = "\u{132A}"
puts char # Output: ጪ
Rust:
let c = '\u{132A}';
println!("{}", c); // Output: ጪ
Go:
char := '\u132A'
fmt.Printf("%c\n", char) // Output: ጪ
CSS:
/* CSS content property */
.element::before {
content: "\00132A"; /* 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%AA
MD5:
a324a3b69fa98d2347287ae64d1f610e
SHA1:
f8471ddcafe3b829857e23d496181e6a9e8442f2
Base64:
4Yyq