C:
char c = '\u1332';
printf("%c\n", c); // Output: ጲ
JavaScript:
const char = '\u1332';
console.log(char); // Output: ጲ
Java:
char c = '\u1332';
System.out.println(c); // Output: ጲ
JSON:
{"text": "\u1332"} // Value: ጲ
Python:
char = '\u1332'
print(char) # Output: ጲ
Perl:
my $char = "\x{1332}";
print $char; # Output: ጲ
PHP:
$char = "\x{1332}";
echo $char; // Output: ጲ
Ruby:
char = "\u{1332}"
puts char # Output: ጲ
Rust:
let c = '\u{1332}';
println!("{}", c); // Output: ጲ
Go:
char := '\u1332'
fmt.Printf("%c\n", char) // Output: ጲ
CSS:
/* CSS content property */
.element::before {
content: "\001332"; /* 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%B2
MD5:
017fbd4d202a500169ed9c4de6603986
SHA1:
133c7b76018636c6bddd372e781fdefbc8f784a0
Base64:
4Yyy