C:
char c = '\u1731';
printf("%c\n", c); // Output: ᜱ
JavaScript:
const char = '\u1731';
console.log(char); // Output: ᜱ
Java:
char c = '\u1731';
System.out.println(c); // Output: ᜱ
JSON:
{"text": "\u1731"} // Value: ᜱ
Python:
char = '\u1731'
print(char) # Output: ᜱ
Perl:
my $char = "\x{1731}";
print $char; # Output: ᜱ
PHP:
$char = "\x{1731}";
echo $char; // Output: ᜱ
Ruby:
char = "\u{1731}"
puts char # Output: ᜱ
Rust:
let c = '\u{1731}';
println!("{}", c); // Output: ᜱ
Go:
char := '\u1731'
fmt.Printf("%c\n", char) // Output: ᜱ
CSS:
/* CSS content property */
.element::before {
content: "\001731"; /* 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%9C%B1
MD5:
a28b48014b3ab93c0cb7c840cf5242a6
SHA1:
81da4a40c1e706a9720cdbaef0116ed7e7f5963a
Base64:
4Zyx