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