C:
char c = '\uA7AB';
printf("%c\n", c); // Output: Ɜ
JavaScript:
const char = '\uA7AB';
console.log(char); // Output: Ɜ
Java:
char c = '\uA7AB';
System.out.println(c); // Output: Ɜ
JSON:
{"text": "\uA7AB"} // Value: Ɜ
Python:
char = '\uA7AB'
print(char) # Output: Ɜ
Perl:
my $char = "\x{A7AB}";
print $char; # Output: Ɜ
PHP:
$char = "\x{A7AB}";
echo $char; // Output: Ɜ
Ruby:
char = "\u{A7AB}"
puts char # Output: Ɜ
Rust:
let c = '\u{A7AB}';
println!("{}", c); // Output: Ɜ
Go:
char := '\uA7AB'
fmt.Printf("%c\n", char) // Output: Ɜ
CSS:
/* CSS content property */
.element::before {
content: "\00A7AB"; /* 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=%EA%9E%AB
MD5:
c0dbf8c9434bfde7cd7d81ff14fd9b4b
SHA1:
ca8858909e59d59ae250e245435e3d88233fd58e
Base64:
6p6r