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