C:
char c = '\u1752';
printf("%c\n", c); // Output: ᝒ
JavaScript:
const char = '\u1752';
console.log(char); // Output: ᝒ
Java:
char c = '\u1752';
System.out.println(c); // Output: ᝒ
JSON:
{"text": "\u1752"} // Value: ᝒ
Python:
char = '\u1752'
print(char) # Output: ᝒ
Perl:
my $char = "\x{1752}";
print $char; # Output: ᝒ
PHP:
$char = "\x{1752}";
echo $char; // Output: ᝒ
Ruby:
char = "\u{1752}"
puts char # Output: ᝒ
Rust:
let c = '\u{1752}';
println!("{}", c); // Output: ᝒ
Go:
char := '\u1752'
fmt.Printf("%c\n", char) // Output: ᝒ
CSS:
/* CSS content property */
.element::before {
content: "\001752"; /* 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%92
MD5:
1ed3a9d332718199300077f741f25e1e
SHA1:
894774000aa1ce4f9fb73cde9dc80eb2118e1928
Base64:
4Z2S