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