C:
char c = '\uA3E5';
printf("%c\n", c); // Output: ꏥ
JavaScript:
const char = '\uA3E5';
console.log(char); // Output: ꏥ
Java:
char c = '\uA3E5';
System.out.println(c); // Output: ꏥ
JSON:
{"text": "\uA3E5"} // Value: ꏥ
Python:
char = '\uA3E5'
print(char) # Output: ꏥ
Perl:
my $char = "\x{A3E5}";
print $char; # Output: ꏥ
PHP:
$char = "\x{A3E5}";
echo $char; // Output: ꏥ
Ruby:
char = "\u{A3E5}"
puts char # Output: ꏥ
Rust:
let c = '\u{A3E5}';
println!("{}", c); // Output: ꏥ
Go:
char := '\uA3E5'
fmt.Printf("%c\n", char) // Output: ꏥ
CSS:
/* CSS content property */
.element::before {
content: "\00A3E5"; /* 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%8F%A5
MD5:
28f7581a753662c3c4c90bc855a8af5d
SHA1:
219efbce486ed494ca90868feba6ab73fb5f551d
Base64:
6o+l