C:
char c = '\u2305';
printf("%c\n", c); // Output: ⌅
JavaScript:
const char = '\u2305';
console.log(char); // Output: ⌅
Java:
char c = '\u2305';
System.out.println(c); // Output: ⌅
JSON:
{"text": "\u2305"} // Value: ⌅
Python:
char = '\u2305'
print(char) # Output: ⌅
Perl:
my $char = "\x{2305}";
print $char; # Output: ⌅
PHP:
$char = "\x{2305}";
echo $char; // Output: ⌅
Ruby:
char = "\u{2305}"
puts char # Output: ⌅
Rust:
let c = '\u{2305}';
println!("{}", c); // Output: ⌅
Go:
char := '\u2305'
fmt.Printf("%c\n", char) // Output: ⌅
CSS:
/* CSS content property */
.element::before {
content: "\002305"; /* 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%85
MD5:
e298aafb0b15a4e93da02d89c53717eb
SHA1:
7a5527310b782533771ec47f1f8bc0489d8f66e3
Base64:
4oyF