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