C:
char c = '\u2922';
printf("%c\n", c); // Output: ⤢
JavaScript:
const char = '\u2922';
console.log(char); // Output: ⤢
Java:
char c = '\u2922';
System.out.println(c); // Output: ⤢
JSON:
{"text": "\u2922"} // Value: ⤢
Python:
char = '\u2922'
print(char) # Output: ⤢
Perl:
my $char = "\x{2922}";
print $char; # Output: ⤢
PHP:
$char = "\x{2922}";
echo $char; // Output: ⤢
Ruby:
char = "\u{2922}"
puts char # Output: ⤢
Rust:
let c = '\u{2922}';
println!("{}", c); // Output: ⤢
Go:
char := '\u2922'
fmt.Printf("%c\n", char) // Output: ⤢
CSS:
/* CSS content property */
.element::before {
content: "\002922"; /* 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%A2
MD5:
28b793a39c7deb3ba41a015c885824c2
SHA1:
00dc03e3a62965b16b3457ed7630581fb2405e6d
Base64:
4qSi