C:
char c = '\u2333';
printf("%c\n", c); // Output: ⌳
JavaScript:
const char = '\u2333';
console.log(char); // Output: ⌳
Java:
char c = '\u2333';
System.out.println(c); // Output: ⌳
JSON:
{"text": "\u2333"} // Value: ⌳
Python:
char = '\u2333'
print(char) # Output: ⌳
Perl:
my $char = "\x{2333}";
print $char; # Output: ⌳
PHP:
$char = "\x{2333}";
echo $char; // Output: ⌳
Ruby:
char = "\u{2333}"
puts char # Output: ⌳
Rust:
let c = '\u{2333}';
println!("{}", c); // Output: ⌳
Go:
char := '\u2333'
fmt.Printf("%c\n", char) // Output: ⌳
CSS:
/* CSS content property */
.element::before {
content: "\002333"; /* 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%B3
MD5:
5855c574a739cad1315b7143485469ac
SHA1:
549b5a2499fb4d89f6d533f45fed3802c3d595e2
Base64:
4oyz