C:
char c = '\u1750';
printf("%c\n", c); // Output: ᝐ
JavaScript:
const char = '\u1750';
console.log(char); // Output: ᝐ
Java:
char c = '\u1750';
System.out.println(c); // Output: ᝐ
JSON:
{"text": "\u1750"} // Value: ᝐ
Python:
char = '\u1750'
print(char) # Output: ᝐ
Perl:
my $char = "\x{1750}";
print $char; # Output: ᝐ
PHP:
$char = "\x{1750}";
echo $char; // Output: ᝐ
Ruby:
char = "\u{1750}"
puts char # Output: ᝐ
Rust:
let c = '\u{1750}';
println!("{}", c); // Output: ᝐ
Go:
char := '\u1750'
fmt.Printf("%c\n", char) // Output: ᝐ
CSS:
/* CSS content property */
.element::before {
content: "\001750"; /* 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%90
MD5:
b32b1675a3b6235ca580dd0807aee386
SHA1:
e64e203bead5ddfe9f1de0cbaa88f50822a9a77e
Base64:
4Z2Q