C:
char c = '\u2319';
printf("%c\n", c); // Output: ⌙
JavaScript:
const char = '\u2319';
console.log(char); // Output: ⌙
Java:
char c = '\u2319';
System.out.println(c); // Output: ⌙
JSON:
{"text": "\u2319"} // Value: ⌙
Python:
char = '\u2319'
print(char) # Output: ⌙
Perl:
my $char = "\x{2319}";
print $char; # Output: ⌙
PHP:
$char = "\x{2319}";
echo $char; // Output: ⌙
Ruby:
char = "\u{2319}"
puts char # Output: ⌙
Rust:
let c = '\u{2319}';
println!("{}", c); // Output: ⌙
Go:
char := '\u2319'
fmt.Printf("%c\n", char) // Output: ⌙
CSS:
/* CSS content property */
.element::before {
content: "\002319"; /* 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%99
MD5:
6e56bdec610697b8efb0cd536cea8d30
SHA1:
b3075fa1e98ee0be376b189b31e367d19eaef875
Base64:
4oyZ