C:
char c = '\u2918';
printf("%c\n", c); // Output: ⤘
JavaScript:
const char = '\u2918';
console.log(char); // Output: ⤘
Java:
char c = '\u2918';
System.out.println(c); // Output: ⤘
JSON:
{"text": "\u2918"} // Value: ⤘
Python:
char = '\u2918'
print(char) # Output: ⤘
Perl:
my $char = "\x{2918}";
print $char; # Output: ⤘
PHP:
$char = "\x{2918}";
echo $char; // Output: ⤘
Ruby:
char = "\u{2918}"
puts char # Output: ⤘
Rust:
let c = '\u{2918}';
println!("{}", c); // Output: ⤘
Go:
char := '\u2918'
fmt.Printf("%c\n", char) // Output: ⤘
CSS:
/* CSS content property */
.element::before {
content: "\002918"; /* 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%98
MD5:
bf9a1f58f0d6a0b4f5e3757bddfe04ef
SHA1:
4417a7f79ce45afc5e9d44cabf9a87c866877cb0
Base64:
4qSY