C:
char c = '\u0276';
printf("%c\n", c); // Output: ɶ
JavaScript:
const char = '\u0276';
console.log(char); // Output: ɶ
Java:
char c = '\u0276';
System.out.println(c); // Output: ɶ
JSON:
{"text": "\u0276"} // Value: ɶ
Python:
char = '\u0276'
print(char) # Output: ɶ
Perl:
my $char = "\x{0276}";
print $char; # Output: ɶ
PHP:
$char = "\x{0276}";
echo $char; // Output: ɶ
Ruby:
char = "\u{0276}"
puts char # Output: ɶ
Rust:
let c = '\u{276}';
println!("{}", c); // Output: ɶ
Go:
char := '\u0276'
fmt.Printf("%c\n", char) // Output: ɶ
CSS:
/* CSS content property */
.element::before {
content: "\000276"; /* 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%B6
MD5:
6cd8c94e94f326bffff6eb5af1cf6eb5
SHA1:
a93ce49480cc8db698774ba7a9c9a57e187888c4
Base64:
ybY=