C:
char c = '\u1765';
printf("%c\n", c); // Output: ᝥ
JavaScript:
const char = '\u1765';
console.log(char); // Output: ᝥ
Java:
char c = '\u1765';
System.out.println(c); // Output: ᝥ
JSON:
{"text": "\u1765"} // Value: ᝥ
Python:
char = '\u1765'
print(char) # Output: ᝥ
Perl:
my $char = "\x{1765}";
print $char; # Output: ᝥ
PHP:
$char = "\x{1765}";
echo $char; // Output: ᝥ
Ruby:
char = "\u{1765}"
puts char # Output: ᝥ
Rust:
let c = '\u{1765}';
println!("{}", c); // Output: ᝥ
Go:
char := '\u1765'
fmt.Printf("%c\n", char) // Output: ᝥ
CSS:
/* CSS content property */
.element::before {
content: "\001765"; /* 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%A5
MD5:
588146d25d2a0253a5ad626244c75798
SHA1:
e58c8bdb62bb7f2260033ada626d70a0eadd6e1c
Base64:
4Z2l