C:
char c = '\u0241';
printf("%c\n", c); // Output: Ɂ
JavaScript:
const char = '\u0241';
console.log(char); // Output: Ɂ
Java:
char c = '\u0241';
System.out.println(c); // Output: Ɂ
JSON:
{"text": "\u0241"} // Value: Ɂ
Python:
char = '\u0241'
print(char) # Output: Ɂ
Perl:
my $char = "\x{0241}";
print $char; # Output: Ɂ
PHP:
$char = "\x{0241}";
echo $char; // Output: Ɂ
Ruby:
char = "\u{0241}"
puts char # Output: Ɂ
Rust:
let c = '\u{241}';
println!("{}", c); // Output: Ɂ
Go:
char := '\u0241'
fmt.Printf("%c\n", char) // Output: Ɂ
CSS:
/* CSS content property */
.element::before {
content: "\000241"; /* 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%81
MD5:
fbf207f2fb5bee8e1550c9238e082c56
SHA1:
3066d0a957d588022699719d86814052b3de3f20
Base64:
yYE=