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