C:
char c = '\u1123';
printf("%c\n", c); // Output: ᄣ
JavaScript:
const char = '\u1123';
console.log(char); // Output: ᄣ
Java:
char c = '\u1123';
System.out.println(c); // Output: ᄣ
JSON:
{"text": "\u1123"} // Value: ᄣ
Python:
char = '\u1123'
print(char) # Output: ᄣ
Perl:
my $char = "\x{1123}";
print $char; # Output: ᄣ
PHP:
$char = "\x{1123}";
echo $char; // Output: ᄣ
Ruby:
char = "\u{1123}"
puts char # Output: ᄣ
Rust:
let c = '\u{1123}';
println!("{}", c); // Output: ᄣ
Go:
char := '\u1123'
fmt.Printf("%c\n", char) // Output: ᄣ
CSS:
/* CSS content property */
.element::before {
content: "\001123"; /* 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%A3
MD5:
9694980a9001060629ec18bb907424fa
SHA1:
c7fda29ec66256bf4691e4131efd6c5e326a57e2
Base64:
4YSj