C:
char c = '\uA933';
printf("%c\n", c); // Output: ꤳ
JavaScript:
const char = '\uA933';
console.log(char); // Output: ꤳ
Java:
char c = '\uA933';
System.out.println(c); // Output: ꤳ
JSON:
{"text": "\uA933"} // Value: ꤳ
Python:
char = '\uA933'
print(char) # Output: ꤳ
Perl:
my $char = "\x{A933}";
print $char; # Output: ꤳ
PHP:
$char = "\x{A933}";
echo $char; // Output: ꤳ
Ruby:
char = "\u{A933}"
puts char # Output: ꤳ
Rust:
let c = '\u{A933}';
println!("{}", c); // Output: ꤳ
Go:
char := '\uA933'
fmt.Printf("%c\n", char) // Output: ꤳ
CSS:
/* CSS content property */
.element::before {
content: "\00A933"; /* 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=%EA%A4%B3
MD5:
8c20439322a47b64fc8fc74f16e3c02e
SHA1:
50803624bb859fa9cdbed64939e4a1c367dbb3bb
Base64:
6qSz