C:
char c = '\u0297';
printf("%c\n", c); // Output: ʗ
JavaScript:
const char = '\u0297';
console.log(char); // Output: ʗ
Java:
char c = '\u0297';
System.out.println(c); // Output: ʗ
JSON:
{"text": "\u0297"} // Value: ʗ
Python:
char = '\u0297'
print(char) # Output: ʗ
Perl:
my $char = "\x{0297}";
print $char; # Output: ʗ
PHP:
$char = "\x{0297}";
echo $char; // Output: ʗ
Ruby:
char = "\u{0297}"
puts char # Output: ʗ
Rust:
let c = '\u{297}';
println!("{}", c); // Output: ʗ
Go:
char := '\u0297'
fmt.Printf("%c\n", char) // Output: ʗ
CSS:
/* CSS content property */
.element::before {
content: "\000297"; /* 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=%CA%97
MD5:
8022b940a3c4695b9b66f75b250c9fa7
SHA1:
91c83b6bce57effc313a9cf1fcbc150f77177001
Base64:
ypc=