C:
char c = '\u2904';
printf("%c\n", c); // Output: ⤄
JavaScript:
const char = '\u2904';
console.log(char); // Output: ⤄
Java:
char c = '\u2904';
System.out.println(c); // Output: ⤄
JSON:
{"text": "\u2904"} // Value: ⤄
Python:
char = '\u2904'
print(char) # Output: ⤄
Perl:
my $char = "\x{2904}";
print $char; # Output: ⤄
PHP:
$char = "\x{2904}";
echo $char; // Output: ⤄
Ruby:
char = "\u{2904}"
puts char # Output: ⤄
Rust:
let c = '\u{2904}';
println!("{}", c); // Output: ⤄
Go:
char := '\u2904'
fmt.Printf("%c\n", char) // Output: ⤄
CSS:
/* CSS content property */
.element::before {
content: "\002904"; /* 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%84
MD5:
a0967df6c5f3d69c0f5e99976351e8ad
SHA1:
c7d216103db9b1fe6a7dea2198bcaba140b13ea4
Base64:
4qSE