C:
char c = '\u0258';
printf("%c\n", c); // Output: ɘ
JavaScript:
const char = '\u0258';
console.log(char); // Output: ɘ
Java:
char c = '\u0258';
System.out.println(c); // Output: ɘ
JSON:
{"text": "\u0258"} // Value: ɘ
Python:
char = '\u0258'
print(char) # Output: ɘ
Perl:
my $char = "\x{0258}";
print $char; # Output: ɘ
PHP:
$char = "\x{0258}";
echo $char; // Output: ɘ
Ruby:
char = "\u{0258}"
puts char # Output: ɘ
Rust:
let c = '\u{258}';
println!("{}", c); // Output: ɘ
Go:
char := '\u0258'
fmt.Printf("%c\n", char) // Output: ɘ
CSS:
/* CSS content property */
.element::before {
content: "\000258"; /* 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=%C9%98
MD5:
684ae5227129eeb1924e1a656c6662be
SHA1:
9d383a5681e30b6a2085844e7e778165b4a58500
Base64:
yZg=