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