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