C:
char c = '\u2942';
printf("%c\n", c); // Output: ⥂
JavaScript:
const char = '\u2942';
console.log(char); // Output: ⥂
Java:
char c = '\u2942';
System.out.println(c); // Output: ⥂
JSON:
{"text": "\u2942"} // Value: ⥂
Python:
char = '\u2942'
print(char) # Output: ⥂
Perl:
my $char = "\x{2942}";
print $char; # Output: ⥂
PHP:
$char = "\x{2942}";
echo $char; // Output: ⥂
Ruby:
char = "\u{2942}"
puts char # Output: ⥂
Rust:
let c = '\u{2942}';
println!("{}", c); // Output: ⥂
Go:
char := '\u2942'
fmt.Printf("%c\n", char) // Output: ⥂
CSS:
/* CSS content property */
.element::before {
content: "\002942"; /* 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%82
MD5:
626b2f5ebcd3350bf89e0fce9674f083
SHA1:
7b3f898e060e69ffb9c978a19546222594e40ef4
Base64:
4qWC