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