C:
char c = '\u0240';
printf("%c\n", c); // Output: ɀ
JavaScript:
const char = '\u0240';
console.log(char); // Output: ɀ
Java:
char c = '\u0240';
System.out.println(c); // Output: ɀ
JSON:
{"text": "\u0240"} // Value: ɀ
Python:
char = '\u0240'
print(char) # Output: ɀ
Perl:
my $char = "\x{0240}";
print $char; # Output: ɀ
PHP:
$char = "\x{0240}";
echo $char; // Output: ɀ
Ruby:
char = "\u{0240}"
puts char # Output: ɀ
Rust:
let c = '\u{240}';
println!("{}", c); // Output: ɀ
Go:
char := '\u0240'
fmt.Printf("%c\n", char) // Output: ɀ
CSS:
/* CSS content property */
.element::before {
content: "\000240"; /* 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%80
MD5:
8db7978fc4d8fcac0bfbd190f32ce6d5
SHA1:
b4ca3539047886fd9141059402730229536e5059
Base64:
yYA=