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