C:
char c = '\u2921';
printf("%c\n", c); // Output: ⤡
JavaScript:
const char = '\u2921';
console.log(char); // Output: ⤡
Java:
char c = '\u2921';
System.out.println(c); // Output: ⤡
JSON:
{"text": "\u2921"} // Value: ⤡
Python:
char = '\u2921'
print(char) # Output: ⤡
Perl:
my $char = "\x{2921}";
print $char; # Output: ⤡
PHP:
$char = "\x{2921}";
echo $char; // Output: ⤡
Ruby:
char = "\u{2921}"
puts char # Output: ⤡
Rust:
let c = '\u{2921}';
println!("{}", c); // Output: ⤡
Go:
char := '\u2921'
fmt.Printf("%c\n", char) // Output: ⤡
CSS:
/* CSS content property */
.element::before {
content: "\002921"; /* 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%A1
MD5:
9123c45f60af63835899be3ce63739b1
SHA1:
4af35f940057d2d402cf643df227fed9a4114aa0
Base64:
4qSh