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