C:
char c = '\u0201';
printf("%c\n", c); // Output: ȁ
JavaScript:
const char = '\u0201';
console.log(char); // Output: ȁ
Java:
char c = '\u0201';
System.out.println(c); // Output: ȁ
JSON:
{"text": "\u0201"} // Value: ȁ
Python:
char = '\u0201'
print(char) # Output: ȁ
Perl:
my $char = "\x{0201}";
print $char; # Output: ȁ
PHP:
$char = "\x{0201}";
echo $char; // Output: ȁ
Ruby:
char = "\u{0201}"
puts char # Output: ȁ
Rust:
let c = '\u{201}';
println!("{}", c); // Output: ȁ
Go:
char := '\u0201'
fmt.Printf("%c\n", char) // Output: ȁ
CSS:
/* CSS content property */
.element::before {
content: "\000201"; /* 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=%C8%81
MD5:
ad9ba10d45f5ad84249167eb14afc1e3
SHA1:
21aae05bcfe5c3df080b88dfb595cd57294537a5
Base64:
yIE=