C:
char c = '\u1128';
printf("%c\n", c); // Output: ᄨ
JavaScript:
const char = '\u1128';
console.log(char); // Output: ᄨ
Java:
char c = '\u1128';
System.out.println(c); // Output: ᄨ
JSON:
{"text": "\u1128"} // Value: ᄨ
Python:
char = '\u1128'
print(char) # Output: ᄨ
Perl:
my $char = "\x{1128}";
print $char; # Output: ᄨ
PHP:
$char = "\x{1128}";
echo $char; // Output: ᄨ
Ruby:
char = "\u{1128}"
puts char # Output: ᄨ
Rust:
let c = '\u{1128}';
println!("{}", c); // Output: ᄨ
Go:
char := '\u1128'
fmt.Printf("%c\n", char) // Output: ᄨ
CSS:
/* CSS content property */
.element::before {
content: "\001128"; /* 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%84%A8
MD5:
c464372be4ef9536edf5788c0e85d10f
SHA1:
f50756abfcd02733929ece0521fdf2323927f089
Base64:
4YSo