C:
char c = '\u2393';
printf("%c\n", c); // Output: ⎓
JavaScript:
const char = '\u2393';
console.log(char); // Output: ⎓
Java:
char c = '\u2393';
System.out.println(c); // Output: ⎓
JSON:
{"text": "\u2393"} // Value: ⎓
Python:
char = '\u2393'
print(char) # Output: ⎓
Perl:
my $char = "\x{2393}";
print $char; # Output: ⎓
PHP:
$char = "\x{2393}";
echo $char; // Output: ⎓
Ruby:
char = "\u{2393}"
puts char # Output: ⎓
Rust:
let c = '\u{2393}';
println!("{}", c); // Output: ⎓
Go:
char := '\u2393'
fmt.Printf("%c\n", char) // Output: ⎓
CSS:
/* CSS content property */
.element::before {
content: "\002393"; /* 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%93
MD5:
395051f380e20c89815f7740681aa91a
SHA1:
6fb0cb475a1e54c23ae170d2199fb2a9abc5087b
Base64:
4o6T