C:
char c = '\u2959';
printf("%c\n", c); // Output: ⥙
JavaScript:
const char = '\u2959';
console.log(char); // Output: ⥙
Java:
char c = '\u2959';
System.out.println(c); // Output: ⥙
JSON:
{"text": "\u2959"} // Value: ⥙
Python:
char = '\u2959'
print(char) # Output: ⥙
Perl:
my $char = "\x{2959}";
print $char; # Output: ⥙
PHP:
$char = "\x{2959}";
echo $char; // Output: ⥙
Ruby:
char = "\u{2959}"
puts char # Output: ⥙
Rust:
let c = '\u{2959}';
println!("{}", c); // Output: ⥙
Go:
char := '\u2959'
fmt.Printf("%c\n", char) // Output: ⥙
CSS:
/* CSS content property */
.element::before {
content: "\002959"; /* 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%99
MD5:
e62a16e294678a838cff828e3dac9af0
SHA1:
79101508fdcf080687d679c0ffe2e2d516e4271b
Base64:
4qWZ