C:
char c = '\u0221';
printf("%c\n", c); // Output: ȡ
JavaScript:
const char = '\u0221';
console.log(char); // Output: ȡ
Java:
char c = '\u0221';
System.out.println(c); // Output: ȡ
JSON:
{"text": "\u0221"} // Value: ȡ
Python:
char = '\u0221'
print(char) # Output: ȡ
Perl:
my $char = "\x{0221}";
print $char; # Output: ȡ
PHP:
$char = "\x{0221}";
echo $char; // Output: ȡ
Ruby:
char = "\u{0221}"
puts char # Output: ȡ
Rust:
let c = '\u{221}';
println!("{}", c); // Output: ȡ
Go:
char := '\u0221'
fmt.Printf("%c\n", char) // Output: ȡ
CSS:
/* CSS content property */
.element::before {
content: "\000221"; /* 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%A1
MD5:
b5b1a0968d719860a6c530e8e9794fe0
SHA1:
ba2dfd7eb37f9199f490760eeb97c49471976bcc
Base64:
yKE=