C:
char c = '\u1327';
printf("%c\n", c); // Output: ጧ
JavaScript:
const char = '\u1327';
console.log(char); // Output: ጧ
Java:
char c = '\u1327';
System.out.println(c); // Output: ጧ
JSON:
{"text": "\u1327"} // Value: ጧ
Python:
char = '\u1327'
print(char) # Output: ጧ
Perl:
my $char = "\x{1327}";
print $char; # Output: ጧ
PHP:
$char = "\x{1327}";
echo $char; // Output: ጧ
Ruby:
char = "\u{1327}"
puts char # Output: ጧ
Rust:
let c = '\u{1327}';
println!("{}", c); // Output: ጧ
Go:
char := '\u1327'
fmt.Printf("%c\n", char) // Output: ጧ
CSS:
/* CSS content property */
.element::before {
content: "\001327"; /* 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%A7
MD5:
9c820678c879dd6373e39fcb84c3c7c0
SHA1:
163f0ef1407949db9e3be542b3b98577aabf448e
Base64:
4Yyn