C:
char c = '\u1132';
printf("%c\n", c); // Output: ᄲ
JavaScript:
const char = '\u1132';
console.log(char); // Output: ᄲ
Java:
char c = '\u1132';
System.out.println(c); // Output: ᄲ
JSON:
{"text": "\u1132"} // Value: ᄲ
Python:
char = '\u1132'
print(char) # Output: ᄲ
Perl:
my $char = "\x{1132}";
print $char; # Output: ᄲ
PHP:
$char = "\x{1132}";
echo $char; // Output: ᄲ
Ruby:
char = "\u{1132}"
puts char # Output: ᄲ
Rust:
let c = '\u{1132}';
println!("{}", c); // Output: ᄲ
Go:
char := '\u1132'
fmt.Printf("%c\n", char) // Output: ᄲ
CSS:
/* CSS content property */
.element::before {
content: "\001132"; /* 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%B2
MD5:
98dabe2461671e90fdf19f93f0775e57
SHA1:
5c3603a6d89c7104142e164a422d0c0417c38dfd
Base64:
4YSy