C:
char c = '\u233F';
printf("%c\n", c); // Output: ⌿
JavaScript:
const char = '\u233F';
console.log(char); // Output: ⌿
Java:
char c = '\u233F';
System.out.println(c); // Output: ⌿
JSON:
{"text": "\u233F"} // Value: ⌿
Python:
char = '\u233F'
print(char) # Output: ⌿
Perl:
my $char = "\x{233F}";
print $char; # Output: ⌿
PHP:
$char = "\x{233F}";
echo $char; // Output: ⌿
Ruby:
char = "\u{233F}"
puts char # Output: ⌿
Rust:
let c = '\u{233F}';
println!("{}", c); // Output: ⌿
Go:
char := '\u233F'
fmt.Printf("%c\n", char) // Output: ⌿
CSS:
/* CSS content property */
.element::before {
content: "\00233F"; /* 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%BF
MD5:
3d40a6f8bf6e88c37e9fd957db0ecc35
SHA1:
c6d5b60281542052276578c10fc586fa389d3bf5
Base64:
4oy/