C:
char c = '\u2304';
printf("%c\n", c); // Output: ⌄
JavaScript:
const char = '\u2304';
console.log(char); // Output: ⌄
Java:
char c = '\u2304';
System.out.println(c); // Output: ⌄
JSON:
{"text": "\u2304"} // Value: ⌄
Python:
char = '\u2304'
print(char) # Output: ⌄
Perl:
my $char = "\x{2304}";
print $char; # Output: ⌄
PHP:
$char = "\x{2304}";
echo $char; // Output: ⌄
Ruby:
char = "\u{2304}"
puts char # Output: ⌄
Rust:
let c = '\u{2304}';
println!("{}", c); // Output: ⌄
Go:
char := '\u2304'
fmt.Printf("%c\n", char) // Output: ⌄
CSS:
/* CSS content property */
.element::before {
content: "\002304"; /* 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%84
MD5:
21b1868dde2d702057d3aa6ff3010c5e
SHA1:
00d74e13126d693957afa303cab2ca2fdb838195
Base64:
4oyE