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