C:
char c = '\u2302';
printf("%c\n", c); // Output: ⌂
JavaScript:
const char = '\u2302';
console.log(char); // Output: ⌂
Java:
char c = '\u2302';
System.out.println(c); // Output: ⌂
JSON:
{"text": "\u2302"} // Value: ⌂
Python:
char = '\u2302'
print(char) # Output: ⌂
Perl:
my $char = "\x{2302}";
print $char; # Output: ⌂
PHP:
$char = "\x{2302}";
echo $char; // Output: ⌂
Ruby:
char = "\u{2302}"
puts char # Output: ⌂
Rust:
let c = '\u{2302}';
println!("{}", c); // Output: ⌂
Go:
char := '\u2302'
fmt.Printf("%c\n", char) // Output: ⌂
CSS:
/* CSS content property */
.element::before {
content: "\002302"; /* 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%82
MD5:
a4b31d2637f2ad60f2ec2a6c2240ae21
SHA1:
2330e19b5daca5d5adb217b123a1fb69cfc39202
Base64:
4oyC