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