C:
char c = '\u2A9A';
printf("%c\n", c); // Output: ⪚
JavaScript:
const char = '\u2A9A';
console.log(char); // Output: ⪚
Java:
char c = '\u2A9A';
System.out.println(c); // Output: ⪚
JSON:
{"text": "\u2A9A"} // Value: ⪚
Python:
char = '\u2A9A'
print(char) # Output: ⪚
Perl:
my $char = "\x{2A9A}";
print $char; # Output: ⪚
PHP:
$char = "\x{2A9A}";
echo $char; // Output: ⪚
Ruby:
char = "\u{2A9A}"
puts char # Output: ⪚
Rust:
let c = '\u{2A9A}';
println!("{}", c); // Output: ⪚
Go:
char := '\u2A9A'
fmt.Printf("%c\n", char) // Output: ⪚
CSS:
/* CSS content property */
.element::before {
content: "\002A9A"; /* 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%9A
MD5:
524fd7a5959cb8a740566a3b68c2e3d0
SHA1:
705f7d554e9e96dbdbbd9d0f9dce85da2b0064c0
Base64:
4qqa