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