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