C:
char c = '\u2384';
printf("%c\n", c); // Output: ⎄
JavaScript:
const char = '\u2384';
console.log(char); // Output: ⎄
Java:
char c = '\u2384';
System.out.println(c); // Output: ⎄
JSON:
{"text": "\u2384"} // Value: ⎄
Python:
char = '\u2384'
print(char) # Output: ⎄
Perl:
my $char = "\x{2384}";
print $char; # Output: ⎄
PHP:
$char = "\x{2384}";
echo $char; // Output: ⎄
Ruby:
char = "\u{2384}"
puts char # Output: ⎄
Rust:
let c = '\u{2384}';
println!("{}", c); // Output: ⎄
Go:
char := '\u2384'
fmt.Printf("%c\n", char) // Output: ⎄
CSS:
/* CSS content property */
.element::before {
content: "\002384"; /* 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%8E%84
MD5:
400363b0e153881ba829468ca705bf2f
SHA1:
34030e8481547d299646b5f3a71e58d2864e6997
Base64:
4o6E