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