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