C:
char c = '\u2911';
printf("%c\n", c); // Output: ⤑
JavaScript:
const char = '\u2911';
console.log(char); // Output: ⤑
Java:
char c = '\u2911';
System.out.println(c); // Output: ⤑
JSON:
{"text": "\u2911"} // Value: ⤑
Python:
char = '\u2911'
print(char) # Output: ⤑
Perl:
my $char = "\x{2911}";
print $char; # Output: ⤑
PHP:
$char = "\x{2911}";
echo $char; // Output: ⤑
Ruby:
char = "\u{2911}"
puts char # Output: ⤑
Rust:
let c = '\u{2911}';
println!("{}", c); // Output: ⤑
Go:
char := '\u2911'
fmt.Printf("%c\n", char) // Output: ⤑
CSS:
/* CSS content property */
.element::before {
content: "\002911"; /* 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%A4%91
MD5:
d0f5b67b121da82caaa3a56fddb82837
SHA1:
d99253d6a7d5044018a400980f0d3de04618d94a
Base64:
4qSR