C:
char c = '\u2323';
printf("%c\n", c); // Output: ⌣
JavaScript:
const char = '\u2323';
console.log(char); // Output: ⌣
Java:
char c = '\u2323';
System.out.println(c); // Output: ⌣
JSON:
{"text": "\u2323"} // Value: ⌣
Python:
char = '\u2323'
print(char) # Output: ⌣
Perl:
my $char = "\x{2323}";
print $char; # Output: ⌣
PHP:
$char = "\x{2323}";
echo $char; // Output: ⌣
Ruby:
char = "\u{2323}"
puts char # Output: ⌣
Rust:
let c = '\u{2323}';
println!("{}", c); // Output: ⌣
Go:
char := '\u2323'
fmt.Printf("%c\n", char) // Output: ⌣
CSS:
/* CSS content property */
.element::before {
content: "\002323"; /* 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%A3
MD5:
2eb713096d3216a95c1ae20e9d08695b
SHA1:
b2fb37b90a56daef70da391fd7b426d70da9c02b
Base64:
4oyj