C:
char c = '\u2321';
printf("%c\n", c); // Output: ⌡
JavaScript:
const char = '\u2321';
console.log(char); // Output: ⌡
Java:
char c = '\u2321';
System.out.println(c); // Output: ⌡
JSON:
{"text": "\u2321"} // Value: ⌡
Python:
char = '\u2321'
print(char) # Output: ⌡
Perl:
my $char = "\x{2321}";
print $char; # Output: ⌡
PHP:
$char = "\x{2321}";
echo $char; // Output: ⌡
Ruby:
char = "\u{2321}"
puts char # Output: ⌡
Rust:
let c = '\u{2321}';
println!("{}", c); // Output: ⌡
Go:
char := '\u2321'
fmt.Printf("%c\n", char) // Output: ⌡
CSS:
/* CSS content property */
.element::before {
content: "\002321"; /* 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%A1
MD5:
1238cb3fe2955981e2e90689e2d19b3c
SHA1:
b862e615cf682192f563c78b18f784e06df5513a
Base64:
4oyh