C:
char c = '\u1A82';
printf("%c\n", c); // Output: ᪂
JavaScript:
const char = '\u1A82';
console.log(char); // Output: ᪂
Java:
char c = '\u1A82';
System.out.println(c); // Output: ᪂
JSON:
{"text": "\u1A82"} // Value: ᪂
Python:
char = '\u1A82'
print(char) # Output: ᪂
Perl:
my $char = "\x{1A82}";
print $char; # Output: ᪂
PHP:
$char = "\x{1A82}";
echo $char; // Output: ᪂
Ruby:
char = "\u{1A82}"
puts char # Output: ᪂
Rust:
let c = '\u{1A82}';
println!("{}", c); // Output: ᪂
Go:
char := '\u1A82'
fmt.Printf("%c\n", char) // Output: ᪂
CSS:
/* CSS content property */
.element::before {
content: "\001A82"; /* 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%AA%82
MD5:
d0ed2f7cfc6dbe27bd0f1fb94b5fdef2
SHA1:
a1fa174cd0fda24a1179ad052ce7ae0e05b0f988
Base64:
4aqC