C:
char c = '\u2392';
printf("%c\n", c); // Output: ⎒
JavaScript:
const char = '\u2392';
console.log(char); // Output: ⎒
Java:
char c = '\u2392';
System.out.println(c); // Output: ⎒
JSON:
{"text": "\u2392"} // Value: ⎒
Python:
char = '\u2392'
print(char) # Output: ⎒
Perl:
my $char = "\x{2392}";
print $char; # Output: ⎒
PHP:
$char = "\x{2392}";
echo $char; // Output: ⎒
Ruby:
char = "\u{2392}"
puts char # Output: ⎒
Rust:
let c = '\u{2392}';
println!("{}", c); // Output: ⎒
Go:
char := '\u2392'
fmt.Printf("%c\n", char) // Output: ⎒
CSS:
/* CSS content property */
.element::before {
content: "\002392"; /* 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%92
MD5:
a7b220009c2f99975de1d5a653d7f18f
SHA1:
cf228923713b19b57faec4ec8daf93c0267e18a1
Base64:
4o6S