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