C:
char c = '\u1602';
printf("%c\n", c); // Output: ᘂ
JavaScript:
const char = '\u1602';
console.log(char); // Output: ᘂ
Java:
char c = '\u1602';
System.out.println(c); // Output: ᘂ
JSON:
{"text": "\u1602"} // Value: ᘂ
Python:
char = '\u1602'
print(char) # Output: ᘂ
Perl:
my $char = "\x{1602}";
print $char; # Output: ᘂ
PHP:
$char = "\x{1602}";
echo $char; // Output: ᘂ
Ruby:
char = "\u{1602}"
puts char # Output: ᘂ
Rust:
let c = '\u{1602}';
println!("{}", c); // Output: ᘂ
Go:
char := '\u1602'
fmt.Printf("%c\n", char) // Output: ᘂ
CSS:
/* CSS content property */
.element::before {
content: "\001602"; /* 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%98%82
MD5:
88eff6d2d35cbf36eb0ea16d963c63fb
SHA1:
7fb3cd6eb2c5f7293def1ec737a350706c9e7744
Base64:
4ZiC