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