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