C:
char c = '\u0239';
printf("%c\n", c); // Output: ȹ
JavaScript:
const char = '\u0239';
console.log(char); // Output: ȹ
Java:
char c = '\u0239';
System.out.println(c); // Output: ȹ
JSON:
{"text": "\u0239"} // Value: ȹ
Python:
char = '\u0239'
print(char) # Output: ȹ
Perl:
my $char = "\x{0239}";
print $char; # Output: ȹ
PHP:
$char = "\x{0239}";
echo $char; // Output: ȹ
Ruby:
char = "\u{0239}"
puts char # Output: ȹ
Rust:
let c = '\u{239}';
println!("{}", c); // Output: ȹ
Go:
char := '\u0239'
fmt.Printf("%c\n", char) // Output: ȹ
CSS:
/* CSS content property */
.element::before {
content: "\000239"; /* 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%B9
MD5:
0e7ea7ca66bda85e1d0baf86dd88b116
SHA1:
63789dbef58c25039e43f12c1745a525578e7e0d
Base64:
yLk=