C:
char c = '\u1753';
printf("%c\n", c); // Output: ᝓ
JavaScript:
const char = '\u1753';
console.log(char); // Output: ᝓ
Java:
char c = '\u1753';
System.out.println(c); // Output: ᝓ
JSON:
{"text": "\u1753"} // Value: ᝓ
Python:
char = '\u1753'
print(char) # Output: ᝓ
Perl:
my $char = "\x{1753}";
print $char; # Output: ᝓ
PHP:
$char = "\x{1753}";
echo $char; // Output: ᝓ
Ruby:
char = "\u{1753}"
puts char # Output: ᝓ
Rust:
let c = '\u{1753}';
println!("{}", c); // Output: ᝓ
Go:
char := '\u1753'
fmt.Printf("%c\n", char) // Output: ᝓ
CSS:
/* CSS content property */
.element::before {
content: "\001753"; /* 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%93
MD5:
fe10da2eb05789bd6e4f7f71eb92c414
SHA1:
6f5df40bbaeb8af2d4d55ef0a32722418159b97a
Base64:
4Z2T