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