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