C:
char c = '\uA42B';
printf("%c\n", c); // Output: ꐫ
JavaScript:
const char = '\uA42B';
console.log(char); // Output: ꐫ
Java:
char c = '\uA42B';
System.out.println(c); // Output: ꐫ
JSON:
{"text": "\uA42B"} // Value: ꐫ
Python:
char = '\uA42B'
print(char) # Output: ꐫ
Perl:
my $char = "\x{A42B}";
print $char; # Output: ꐫ
PHP:
$char = "\x{A42B}";
echo $char; // Output: ꐫ
Ruby:
char = "\u{A42B}"
puts char # Output: ꐫ
Rust:
let c = '\u{A42B}';
println!("{}", c); // Output: ꐫ
Go:
char := '\uA42B'
fmt.Printf("%c\n", char) // Output: ꐫ
CSS:
/* CSS content property */
.element::before {
content: "\00A42B"; /* 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%90%AB
MD5:
b0a393007d3d8f853872cf89db5eaa54
SHA1:
bfa3bc7371998c2604c807b47517d1ec5959d3a5
Base64:
6pCr