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