C:
char c = '\uA443';
printf("%c\n", c); // Output: ꑃ
JavaScript:
const char = '\uA443';
console.log(char); // Output: ꑃ
Java:
char c = '\uA443';
System.out.println(c); // Output: ꑃ
JSON:
{"text": "\uA443"} // Value: ꑃ
Python:
char = '\uA443'
print(char) # Output: ꑃ
Perl:
my $char = "\x{A443}";
print $char; # Output: ꑃ
PHP:
$char = "\x{A443}";
echo $char; // Output: ꑃ
Ruby:
char = "\u{A443}"
puts char # Output: ꑃ
Rust:
let c = '\u{A443}';
println!("{}", c); // Output: ꑃ
Go:
char := '\uA443'
fmt.Printf("%c\n", char) // Output: ꑃ
CSS:
/* CSS content property */
.element::before {
content: "\00A443"; /* 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%91%83
MD5:
481a8f274d08b73edd27500457e6383e
SHA1:
97921e80cd7d8d54afc7127573b29f2475c2ce3b
Base64:
6pGD