C:
char c = '\u2318';
printf("%c\n", c); // Output: ⌘
JavaScript:
const char = '\u2318';
console.log(char); // Output: ⌘
Java:
char c = '\u2318';
System.out.println(c); // Output: ⌘
JSON:
{"text": "\u2318"} // Value: ⌘
Python:
char = '\u2318'
print(char) # Output: ⌘
Perl:
my $char = "\x{2318}";
print $char; # Output: ⌘
PHP:
$char = "\x{2318}";
echo $char; // Output: ⌘
Ruby:
char = "\u{2318}"
puts char # Output: ⌘
Rust:
let c = '\u{2318}';
println!("{}", c); // Output: ⌘
Go:
char := '\u2318'
fmt.Printf("%c\n", char) // Output: ⌘
CSS:
/* CSS content property */
.element::before {
content: "\002318"; /* 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%98
MD5:
50b19e0da8c51a7193db1b98bf046fa1
SHA1:
bdc9da0d0104e6a64e5550c899831ed0af155617
Base64:
4oyY