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