C:
char c = '\u0271';
printf("%c\n", c); // Output: ɱ
JavaScript:
const char = '\u0271';
console.log(char); // Output: ɱ
Java:
char c = '\u0271';
System.out.println(c); // Output: ɱ
JSON:
{"text": "\u0271"} // Value: ɱ
Python:
char = '\u0271'
print(char) # Output: ɱ
Perl:
my $char = "\x{0271}";
print $char; # Output: ɱ
PHP:
$char = "\x{0271}";
echo $char; // Output: ɱ
Ruby:
char = "\u{0271}"
puts char # Output: ɱ
Rust:
let c = '\u{271}';
println!("{}", c); // Output: ɱ
Go:
char := '\u0271'
fmt.Printf("%c\n", char) // Output: ɱ
CSS:
/* CSS content property */
.element::before {
content: "\000271"; /* 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%B1
MD5:
75879d5782aa3fb76efc6046531c8882
SHA1:
4328a458bc7493df9f42d3ac2e35dbafbbb0d364
Base64:
ybE=