C:
char c = '\u2962';
printf("%c\n", c); // Output: ⥢
JavaScript:
const char = '\u2962';
console.log(char); // Output: ⥢
Java:
char c = '\u2962';
System.out.println(c); // Output: ⥢
JSON:
{"text": "\u2962"} // Value: ⥢
Python:
char = '\u2962'
print(char) # Output: ⥢
Perl:
my $char = "\x{2962}";
print $char; # Output: ⥢
PHP:
$char = "\x{2962}";
echo $char; // Output: ⥢
Ruby:
char = "\u{2962}"
puts char # Output: ⥢
Rust:
let c = '\u{2962}';
println!("{}", c); // Output: ⥢
Go:
char := '\u2962'
fmt.Printf("%c\n", char) // Output: ⥢
CSS:
/* CSS content property */
.element::before {
content: "\002962"; /* 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%A2
MD5:
d7c95c09daec782943575855110b01bf
SHA1:
89970bbf33a00a9868107dbce4014c1a20bb2709
Base64:
4qWi