C:
char c = '\u2306';
printf("%c\n", c); // Output: ⌆
JavaScript:
const char = '\u2306';
console.log(char); // Output: ⌆
Java:
char c = '\u2306';
System.out.println(c); // Output: ⌆
JSON:
{"text": "\u2306"} // Value: ⌆
Python:
char = '\u2306'
print(char) # Output: ⌆
Perl:
my $char = "\x{2306}";
print $char; # Output: ⌆
PHP:
$char = "\x{2306}";
echo $char; // Output: ⌆
Ruby:
char = "\u{2306}"
puts char # Output: ⌆
Rust:
let c = '\u{2306}';
println!("{}", c); // Output: ⌆
Go:
char := '\u2306'
fmt.Printf("%c\n", char) // Output: ⌆
CSS:
/* CSS content property */
.element::before {
content: "\002306"; /* 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%86
MD5:
92e8057d90809cd773eb9e75750051b7
SHA1:
185267cfc726e31412c4da9d62de50f21bc8d6ba
Base64:
4oyG