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