C:
char c = '\u0268';
printf("%c\n", c); // Output: ɨ
JavaScript:
const char = '\u0268';
console.log(char); // Output: ɨ
Java:
char c = '\u0268';
System.out.println(c); // Output: ɨ
JSON:
{"text": "\u0268"} // Value: ɨ
Python:
char = '\u0268'
print(char) # Output: ɨ
Perl:
my $char = "\x{0268}";
print $char; # Output: ɨ
PHP:
$char = "\x{0268}";
echo $char; // Output: ɨ
Ruby:
char = "\u{0268}"
puts char # Output: ɨ
Rust:
let c = '\u{268}';
println!("{}", c); // Output: ɨ
Go:
char := '\u0268'
fmt.Printf("%c\n", char) // Output: ɨ
CSS:
/* CSS content property */
.element::before {
content: "\000268"; /* 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%A8
MD5:
c30cee383de39c2d0e48c9f5e55642ac
SHA1:
8ef8ae2b507d4198b63e87b2a5e3b458448892eb
Base64:
yag=