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