C:
char c = '\u2327';
printf("%c\n", c); // Output: ⌧
JavaScript:
const char = '\u2327';
console.log(char); // Output: ⌧
Java:
char c = '\u2327';
System.out.println(c); // Output: ⌧
JSON:
{"text": "\u2327"} // Value: ⌧
Python:
char = '\u2327'
print(char) # Output: ⌧
Perl:
my $char = "\x{2327}";
print $char; # Output: ⌧
PHP:
$char = "\x{2327}";
echo $char; // Output: ⌧
Ruby:
char = "\u{2327}"
puts char # Output: ⌧
Rust:
let c = '\u{2327}';
println!("{}", c); // Output: ⌧
Go:
char := '\u2327'
fmt.Printf("%c\n", char) // Output: ⌧
CSS:
/* CSS content property */
.element::before {
content: "\002327"; /* 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%A7
MD5:
235288c9a1f8fb2ed60ae57c340ee939
SHA1:
aede9ef28eb90039ce8f57c8b0c80e32bacd2966
Base64:
4oyn