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