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