C:
char c = '\u0250';
printf("%c\n", c); // Output: ɐ
JavaScript:
const char = '\u0250';
console.log(char); // Output: ɐ
Java:
char c = '\u0250';
System.out.println(c); // Output: ɐ
JSON:
{"text": "\u0250"} // Value: ɐ
Python:
char = '\u0250'
print(char) # Output: ɐ
Perl:
my $char = "\x{0250}";
print $char; # Output: ɐ
PHP:
$char = "\x{0250}";
echo $char; // Output: ɐ
Ruby:
char = "\u{0250}"
puts char # Output: ɐ
Rust:
let c = '\u{250}';
println!("{}", c); // Output: ɐ
Go:
char := '\u0250'
fmt.Printf("%c\n", char) // Output: ɐ
CSS:
/* CSS content property */
.element::before {
content: "\000250"; /* 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%90
MD5:
e40642c0f30455894f6b27f025caade6
SHA1:
b95a6c6f39702608e3384661653a2a330406b667
Base64:
yZA=