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