C:
char c = '\u0197';
printf("%c\n", c); // Output: Ɨ
JavaScript:
const char = '\u0197';
console.log(char); // Output: Ɨ
Java:
char c = '\u0197';
System.out.println(c); // Output: Ɨ
JSON:
{"text": "\u0197"} // Value: Ɨ
Python:
char = '\u0197'
print(char) # Output: Ɨ
Perl:
my $char = "\x{0197}";
print $char; # Output: Ɨ
PHP:
$char = "\x{0197}";
echo $char; // Output: Ɨ
Ruby:
char = "\u{0197}"
puts char # Output: Ɨ
Rust:
let c = '\u{197}';
println!("{}", c); // Output: Ɨ
Go:
char := '\u0197'
fmt.Printf("%c\n", char) // Output: Ɨ
CSS:
/* CSS content property */
.element::before {
content: "\000197"; /* 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=%C6%97
MD5:
2045e31bde38c0f73c05b4aebb75d180
SHA1:
10981dd8d6cb7c884e97eec064c8de9af2d54047
Base64:
xpc=