C:
char c = '\u0213';
printf("%c\n", c); // Output: ȓ
JavaScript:
const char = '\u0213';
console.log(char); // Output: ȓ
Java:
char c = '\u0213';
System.out.println(c); // Output: ȓ
JSON:
{"text": "\u0213"} // Value: ȓ
Python:
char = '\u0213'
print(char) # Output: ȓ
Perl:
my $char = "\x{0213}";
print $char; # Output: ȓ
PHP:
$char = "\x{0213}";
echo $char; // Output: ȓ
Ruby:
char = "\u{0213}"
puts char # Output: ȓ
Rust:
let c = '\u{213}';
println!("{}", c); // Output: ȓ
Go:
char := '\u0213'
fmt.Printf("%c\n", char) // Output: ȓ
CSS:
/* CSS content property */
.element::before {
content: "\000213"; /* 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%93
MD5:
796bf8ef141ebd37894524680148ed32
SHA1:
23ae98e786b2ed8fffafe94df299b959d4fa04fb
Base64:
yJM=