C:
char c = '\u0267';
printf("%c\n", c); // Output: ɧ
JavaScript:
const char = '\u0267';
console.log(char); // Output: ɧ
Java:
char c = '\u0267';
System.out.println(c); // Output: ɧ
JSON:
{"text": "\u0267"} // Value: ɧ
Python:
char = '\u0267'
print(char) # Output: ɧ
Perl:
my $char = "\x{0267}";
print $char; # Output: ɧ
PHP:
$char = "\x{0267}";
echo $char; // Output: ɧ
Ruby:
char = "\u{0267}"
puts char # Output: ɧ
Rust:
let c = '\u{267}';
println!("{}", c); // Output: ɧ
Go:
char := '\u0267'
fmt.Printf("%c\n", char) // Output: ɧ
CSS:
/* CSS content property */
.element::before {
content: "\000267"; /* 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%A7
MD5:
b294989ce448c30aba0239d6bbaa786c
SHA1:
f88206907c6a734ae648f9ce583ecf6c95e24636
Base64:
yac=