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