C:
char c = '\u0251';
printf("%c\n", c); // Output: ɑ
JavaScript:
const char = '\u0251';
console.log(char); // Output: ɑ
Java:
char c = '\u0251';
System.out.println(c); // Output: ɑ
JSON:
{"text": "\u0251"} // Value: ɑ
Python:
char = '\u0251'
print(char) # Output: ɑ
Perl:
my $char = "\x{0251}";
print $char; # Output: ɑ
PHP:
$char = "\x{0251}";
echo $char; // Output: ɑ
Ruby:
char = "\u{0251}"
puts char # Output: ɑ
Rust:
let c = '\u{251}';
println!("{}", c); // Output: ɑ
Go:
char := '\u0251'
fmt.Printf("%c\n", char) // Output: ɑ
CSS:
/* CSS content property */
.element::before {
content: "\000251"; /* 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%91
MD5:
ee096cd31f4100d9c4e657676e32067d
SHA1:
5196f2fec58395730294eced84f1c776b9f9ee1f
Base64:
yZE=