C:
char c = '\u1762';
printf("%c\n", c); // Output: ᝢ
JavaScript:
const char = '\u1762';
console.log(char); // Output: ᝢ
Java:
char c = '\u1762';
System.out.println(c); // Output: ᝢ
JSON:
{"text": "\u1762"} // Value: ᝢ
Python:
char = '\u1762'
print(char) # Output: ᝢ
Perl:
my $char = "\x{1762}";
print $char; # Output: ᝢ
PHP:
$char = "\x{1762}";
echo $char; // Output: ᝢ
Ruby:
char = "\u{1762}"
puts char # Output: ᝢ
Rust:
let c = '\u{1762}';
println!("{}", c); // Output: ᝢ
Go:
char := '\u1762'
fmt.Printf("%c\n", char) // Output: ᝢ
CSS:
/* CSS content property */
.element::before {
content: "\001762"; /* 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%A2
MD5:
f700ad08e725fde27897941fc20f7b1d
SHA1:
2cb99b04316da0b76a8324d66d1dc866c6948a17
Base64:
4Z2i