C:
char c = '\u2322';
printf("%c\n", c); // Output: ⌢
JavaScript:
const char = '\u2322';
console.log(char); // Output: ⌢
Java:
char c = '\u2322';
System.out.println(c); // Output: ⌢
JSON:
{"text": "\u2322"} // Value: ⌢
Python:
char = '\u2322'
print(char) # Output: ⌢
Perl:
my $char = "\x{2322}";
print $char; # Output: ⌢
PHP:
$char = "\x{2322}";
echo $char; // Output: ⌢
Ruby:
char = "\u{2322}"
puts char # Output: ⌢
Rust:
let c = '\u{2322}';
println!("{}", c); // Output: ⌢
Go:
char := '\u2322'
fmt.Printf("%c\n", char) // Output: ⌢
CSS:
/* CSS content property */
.element::before {
content: "\002322"; /* 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%8C%A2
MD5:
08751332b410815e36f1bc5ef775294d
SHA1:
72bae3b87f533fa63d3ffe520c83dae1bfc9352e
Base64:
4oyi