C:
char c = '\u2917';
printf("%c\n", c); // Output: ⤗
JavaScript:
const char = '\u2917';
console.log(char); // Output: ⤗
Java:
char c = '\u2917';
System.out.println(c); // Output: ⤗
JSON:
{"text": "\u2917"} // Value: ⤗
Python:
char = '\u2917'
print(char) # Output: ⤗
Perl:
my $char = "\x{2917}";
print $char; # Output: ⤗
PHP:
$char = "\x{2917}";
echo $char; // Output: ⤗
Ruby:
char = "\u{2917}"
puts char # Output: ⤗
Rust:
let c = '\u{2917}';
println!("{}", c); // Output: ⤗
Go:
char := '\u2917'
fmt.Printf("%c\n", char) // Output: ⤗
CSS:
/* CSS content property */
.element::before {
content: "\002917"; /* 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%97
MD5:
6498a58b9ec386a4181be2eb82a3f471
SHA1:
08cc795b39f4b1b122e55254ae819e70afb90f20
Base64:
4qSX