C:
char c = '\u1502';
printf("%c\n", c); // Output: ᔂ
JavaScript:
const char = '\u1502';
console.log(char); // Output: ᔂ
Java:
char c = '\u1502';
System.out.println(c); // Output: ᔂ
JSON:
{"text": "\u1502"} // Value: ᔂ
Python:
char = '\u1502'
print(char) # Output: ᔂ
Perl:
my $char = "\x{1502}";
print $char; # Output: ᔂ
PHP:
$char = "\x{1502}";
echo $char; // Output: ᔂ
Ruby:
char = "\u{1502}"
puts char # Output: ᔂ
Rust:
let c = '\u{1502}';
println!("{}", c); // Output: ᔂ
Go:
char := '\u1502'
fmt.Printf("%c\n", char) // Output: ᔂ
CSS:
/* CSS content property */
.element::before {
content: "\001502"; /* 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%94%82
MD5:
73e7989de070dcbbbcdb159a83503bdc
SHA1:
fb75fd367a0486349513d60fd027e53d84a778b0
Base64:
4ZSC