C:
char c = '\u2A8C';
printf("%c\n", c); // Output: ⪌
JavaScript:
const char = '\u2A8C';
console.log(char); // Output: ⪌
Java:
char c = '\u2A8C';
System.out.println(c); // Output: ⪌
JSON:
{"text": "\u2A8C"} // Value: ⪌
Python:
char = '\u2A8C'
print(char) # Output: ⪌
Perl:
my $char = "\x{2A8C}";
print $char; # Output: ⪌
PHP:
$char = "\x{2A8C}";
echo $char; // Output: ⪌
Ruby:
char = "\u{2A8C}"
puts char # Output: ⪌
Rust:
let c = '\u{2A8C}';
println!("{}", c); // Output: ⪌
Go:
char := '\u2A8C'
fmt.Printf("%c\n", char) // Output: ⪌
CSS:
/* CSS content property */
.element::before {
content: "\002A8C"; /* 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%8C
MD5:
3d4949dfd85f534990e120b799b6bbd5
SHA1:
667acab3774a14a033306cd991f67efbb5c19ebf
Base64:
4qqM