C:
char c = '\u13DA';
printf("%c\n", c); // Output: Ꮪ
JavaScript:
const char = '\u13DA';
console.log(char); // Output: Ꮪ
Java:
char c = '\u13DA';
System.out.println(c); // Output: Ꮪ
JSON:
{"text": "\u13DA"} // Value: Ꮪ
Python:
char = '\u13DA'
print(char) # Output: Ꮪ
Perl:
my $char = "\x{13DA}";
print $char; # Output: Ꮪ
PHP:
$char = "\x{13DA}";
echo $char; // Output: Ꮪ
Ruby:
char = "\u{13DA}"
puts char # Output: Ꮪ
Rust:
let c = '\u{13DA}';
println!("{}", c); // Output: Ꮪ
Go:
char := '\u13DA'
fmt.Printf("%c\n", char) // Output: Ꮪ
CSS:
/* CSS content property */
.element::before {
content: "\0013DA"; /* 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=%E1%8F%9A
MD5:
1a1d67c9a29247d9fd4bcf368a138f91
SHA1:
817142da725ba87b67be65039e9c69867ae9f2f3
Base64:
4Y+a