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