C:
char c = '\u0237';
printf("%c\n", c); // Output: ȷ
JavaScript:
const char = '\u0237';
console.log(char); // Output: ȷ
Java:
char c = '\u0237';
System.out.println(c); // Output: ȷ
JSON:
{"text": "\u0237"} // Value: ȷ
Python:
char = '\u0237'
print(char) # Output: ȷ
Perl:
my $char = "\x{0237}";
print $char; # Output: ȷ
PHP:
$char = "\x{0237}";
echo $char; // Output: ȷ
Ruby:
char = "\u{0237}"
puts char # Output: ȷ
Rust:
let c = '\u{237}';
println!("{}", c); // Output: ȷ
Go:
char := '\u0237'
fmt.Printf("%c\n", char) // Output: ȷ
CSS:
/* CSS content property */
.element::before {
content: "\000237"; /* 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%B7
MD5:
a47e1add9c5e76327e49d968d2b93653
SHA1:
b8143d2c9e5ff22e05415e0f48cc68cfc199049b
Base64:
yLc=