C:
char c = '\u2A9D';
printf("%c\n", c); // Output: ⪝
JavaScript:
const char = '\u2A9D';
console.log(char); // Output: ⪝
Java:
char c = '\u2A9D';
System.out.println(c); // Output: ⪝
JSON:
{"text": "\u2A9D"} // Value: ⪝
Python:
char = '\u2A9D'
print(char) # Output: ⪝
Perl:
my $char = "\x{2A9D}";
print $char; # Output: ⪝
PHP:
$char = "\x{2A9D}";
echo $char; // Output: ⪝
Ruby:
char = "\u{2A9D}"
puts char # Output: ⪝
Rust:
let c = '\u{2A9D}';
println!("{}", c); // Output: ⪝
Go:
char := '\u2A9D'
fmt.Printf("%c\n", char) // Output: ⪝
CSS:
/* CSS content property */
.element::before {
content: "\002A9D"; /* 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%9D
MD5:
1cff7ba1e218635fe1278c536b80281c
SHA1:
00b7ccdca034c601ccc72ada40abe5ddd22b8969
Base64:
4qqd