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