C:
char c = '\u1772';
printf("%c\n", c); // Output: ᝲ
JavaScript:
const char = '\u1772';
console.log(char); // Output: ᝲ
Java:
char c = '\u1772';
System.out.println(c); // Output: ᝲ
JSON:
{"text": "\u1772"} // Value: ᝲ
Python:
char = '\u1772'
print(char) # Output: ᝲ
Perl:
my $char = "\x{1772}";
print $char; # Output: ᝲ
PHP:
$char = "\x{1772}";
echo $char; // Output: ᝲ
Ruby:
char = "\u{1772}"
puts char # Output: ᝲ
Rust:
let c = '\u{1772}';
println!("{}", c); // Output: ᝲ
Go:
char := '\u1772'
fmt.Printf("%c\n", char) // Output: ᝲ
CSS:
/* CSS content property */
.element::before {
content: "\001772"; /* 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%B2
MD5:
aee476a24e06a0a2c27617ca82c86560
SHA1:
8327699fd9015277ebbc7925f79e21995aab7113
Base64:
4Z2y