C:
char c = '\uA7B0';
printf("%c\n", c); // Output: Ʞ
JavaScript:
const char = '\uA7B0';
console.log(char); // Output: Ʞ
Java:
char c = '\uA7B0';
System.out.println(c); // Output: Ʞ
JSON:
{"text": "\uA7B0"} // Value: Ʞ
Python:
char = '\uA7B0'
print(char) # Output: Ʞ
Perl:
my $char = "\x{A7B0}";
print $char; # Output: Ʞ
PHP:
$char = "\x{A7B0}";
echo $char; // Output: Ʞ
Ruby:
char = "\u{A7B0}"
puts char # Output: Ʞ
Rust:
let c = '\u{A7B0}';
println!("{}", c); // Output: Ʞ
Go:
char := '\uA7B0'
fmt.Printf("%c\n", char) // Output: Ʞ
CSS:
/* CSS content property */
.element::before {
content: "\00A7B0"; /* 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%B0
MD5:
d4646f8f9cb57139214edbc3ba0fdb49
SHA1:
746f51007b361503b2c41ad4b1b81a30e70d31a2
Base64:
6p6w