C:
char c = '\u21E3';
printf("%c\n", c); // Output: ⇣
JavaScript:
const char = '\u21E3';
console.log(char); // Output: ⇣
Java:
char c = '\u21E3';
System.out.println(c); // Output: ⇣
JSON:
{"text": "\u21E3"} // Value: ⇣
Python:
char = '\u21E3'
print(char) # Output: ⇣
Perl:
my $char = "\x{21E3}";
print $char; # Output: ⇣
PHP:
$char = "\x{21E3}";
echo $char; // Output: ⇣
Ruby:
char = "\u{21E3}"
puts char # Output: ⇣
Rust:
let c = '\u{21E3}';
println!("{}", c); // Output: ⇣
Go:
char := '\u21E3'
fmt.Printf("%c\n", char) // Output: ⇣
CSS:
/* CSS content property */
.element::before {
content: "\0021E3"; /* 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%87%A3
MD5:
a6e3dabfca43d95f44e95af7405a54e7
SHA1:
9da69c7479eb82656d5460a65ddc619e73af1cac
Base64:
4oej