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