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