C:
char c = '\u01A9';
printf("%c\n", c); // Output: Ʃ
JavaScript:
const char = '\u01A9';
console.log(char); // Output: Ʃ
Java:
char c = '\u01A9';
System.out.println(c); // Output: Ʃ
JSON:
{"text": "\u01A9"} // Value: Ʃ
Python:
char = '\u01A9'
print(char) # Output: Ʃ
Perl:
my $char = "\x{01A9}";
print $char; # Output: Ʃ
PHP:
$char = "\x{01A9}";
echo $char; // Output: Ʃ
Ruby:
char = "\u{01A9}"
puts char # Output: Ʃ
Rust:
let c = '\u{1A9}';
println!("{}", c); // Output: Ʃ
Go:
char := '\u01A9'
fmt.Printf("%c\n", char) // Output: Ʃ
CSS:
/* CSS content property */
.element::before {
content: "\0001A9"; /* 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=%C6%A9
MD5:
dade88f53d9d122f5f25e0526beb827a
SHA1:
f1702939c7218a8ac4eaa96b757ffaab2ef0c024
Base64:
xqk=