C:
char c = '\u1751';
printf("%c\n", c); // Output: ᝑ
JavaScript:
const char = '\u1751';
console.log(char); // Output: ᝑ
Java:
char c = '\u1751';
System.out.println(c); // Output: ᝑ
JSON:
{"text": "\u1751"} // Value: ᝑ
Python:
char = '\u1751'
print(char) # Output: ᝑ
Perl:
my $char = "\x{1751}";
print $char; # Output: ᝑ
PHP:
$char = "\x{1751}";
echo $char; // Output: ᝑ
Ruby:
char = "\u{1751}"
puts char # Output: ᝑ
Rust:
let c = '\u{1751}';
println!("{}", c); // Output: ᝑ
Go:
char := '\u1751'
fmt.Printf("%c\n", char) // Output: ᝑ
CSS:
/* CSS content property */
.element::before {
content: "\001751"; /* 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%9D%91
MD5:
8b1bbec9bd4f4cb2f119072f256bae61
SHA1:
a85dff88dc63d749098fcdbe3743fae1a909d280
Base64:
4Z2R