C:
char c = '\u2916';
printf("%c\n", c); // Output: ⤖
JavaScript:
const char = '\u2916';
console.log(char); // Output: ⤖
Java:
char c = '\u2916';
System.out.println(c); // Output: ⤖
JSON:
{"text": "\u2916"} // Value: ⤖
Python:
char = '\u2916'
print(char) # Output: ⤖
Perl:
my $char = "\x{2916}";
print $char; # Output: ⤖
PHP:
$char = "\x{2916}";
echo $char; // Output: ⤖
Ruby:
char = "\u{2916}"
puts char # Output: ⤖
Rust:
let c = '\u{2916}';
println!("{}", c); // Output: ⤖
Go:
char := '\u2916'
fmt.Printf("%c\n", char) // Output: ⤖
CSS:
/* CSS content property */
.element::before {
content: "\002916"; /* 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%96
MD5:
d313feba6e05b8b94100cb4ca5311880
SHA1:
024c6dc2d8f9b424e0cf055b5568aa55d0985732
Base64:
4qSW