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