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