C:
char c = '\u2C6F';
printf("%c\n", c); // Output: Ɐ
JavaScript:
const char = '\u2C6F';
console.log(char); // Output: Ɐ
Java:
char c = '\u2C6F';
System.out.println(c); // Output: Ɐ
JSON:
{"text": "\u2C6F"} // Value: Ɐ
Python:
char = '\u2C6F'
print(char) # Output: Ɐ
Perl:
my $char = "\x{2C6F}";
print $char; # Output: Ɐ
PHP:
$char = "\x{2C6F}";
echo $char; // Output: Ɐ
Ruby:
char = "\u{2C6F}"
puts char # Output: Ɐ
Rust:
let c = '\u{2C6F}';
println!("{}", c); // Output: Ɐ
Go:
char := '\u2C6F'
fmt.Printf("%c\n", char) // Output: Ɐ
CSS:
/* CSS content property */
.element::before {
content: "\002C6F"; /* 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=%E2%B1%AF
MD5:
a40d071ca9baf05e3fd160532ea23462
SHA1:
3be6ac1e9edd255de3eea13842c44b600ab36804
Base64:
4rGv