C:
char c = '\u21D3';
printf("%c\n", c); // Output: ⇓
JavaScript:
const char = '\u21D3';
console.log(char); // Output: ⇓
Java:
char c = '\u21D3';
System.out.println(c); // Output: ⇓
JSON:
{"text": "\u21D3"} // Value: ⇓
Python:
char = '\u21D3'
print(char) # Output: ⇓
Perl:
my $char = "\x{21D3}";
print $char; # Output: ⇓
PHP:
$char = "\x{21D3}";
echo $char; // Output: ⇓
Ruby:
char = "\u{21D3}"
puts char # Output: ⇓
Rust:
let c = '\u{21D3}';
println!("{}", c); // Output: ⇓
Go:
char := '\u21D3'
fmt.Printf("%c\n", char) // Output: ⇓
CSS:
/* CSS content property */
.element::before {
content: "\0021D3"; /* 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%93
MD5:
682b62e87054e9a9e508e34413262e97
SHA1:
0eabd3a0f0238b068927d7c43c167a94d9a87ced
Base64:
4oeT