C:
char c = '\u2394';
printf("%c\n", c); // Output: ⎔
JavaScript:
const char = '\u2394';
console.log(char); // Output: ⎔
Java:
char c = '\u2394';
System.out.println(c); // Output: ⎔
JSON:
{"text": "\u2394"} // Value: ⎔
Python:
char = '\u2394'
print(char) # Output: ⎔
Perl:
my $char = "\x{2394}";
print $char; # Output: ⎔
PHP:
$char = "\x{2394}";
echo $char; // Output: ⎔
Ruby:
char = "\u{2394}"
puts char # Output: ⎔
Rust:
let c = '\u{2394}';
println!("{}", c); // Output: ⎔
Go:
char := '\u2394'
fmt.Printf("%c\n", char) // Output: ⎔
CSS:
/* CSS content property */
.element::before {
content: "\002394"; /* 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%94
MD5:
0c26d71e75c76d691aca07af9272fd78
SHA1:
9003490a60aa62297c57f61b6026c2cf445f2c1b
Base64:
4o6U