C:
char c = '\u1121';
printf("%c\n", c); // Output: ᄡ
JavaScript:
const char = '\u1121';
console.log(char); // Output: ᄡ
Java:
char c = '\u1121';
System.out.println(c); // Output: ᄡ
JSON:
{"text": "\u1121"} // Value: ᄡ
Python:
char = '\u1121'
print(char) # Output: ᄡ
Perl:
my $char = "\x{1121}";
print $char; # Output: ᄡ
PHP:
$char = "\x{1121}";
echo $char; // Output: ᄡ
Ruby:
char = "\u{1121}"
puts char # Output: ᄡ
Rust:
let c = '\u{1121}';
println!("{}", c); // Output: ᄡ
Go:
char := '\u1121'
fmt.Printf("%c\n", char) // Output: ᄡ
CSS:
/* CSS content property */
.element::before {
content: "\001121"; /* 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%A1
MD5:
da51cbc9d3a99debfa22835398d561f7
SHA1:
aa4e759a8fe70c2a6ccadcc63deec090f5c3f03a
Base64:
4YSh