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