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