C:
char c = '\u2963';
printf("%c\n", c); // Output: ⥣
JavaScript:
const char = '\u2963';
console.log(char); // Output: ⥣
Java:
char c = '\u2963';
System.out.println(c); // Output: ⥣
JSON:
{"text": "\u2963"} // Value: ⥣
Python:
char = '\u2963'
print(char) # Output: ⥣
Perl:
my $char = "\x{2963}";
print $char; # Output: ⥣
PHP:
$char = "\x{2963}";
echo $char; // Output: ⥣
Ruby:
char = "\u{2963}"
puts char # Output: ⥣
Rust:
let c = '\u{2963}';
println!("{}", c); // Output: ⥣
Go:
char := '\u2963'
fmt.Printf("%c\n", char) // Output: ⥣
CSS:
/* CSS content property */
.element::before {
content: "\002963"; /* 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%A3
MD5:
f50047be02906135fa89d9f05d8d5d4b
SHA1:
57cbe9d8208469f2bc7ae1a70f4b7494e0d7ec8f
Base64:
4qWj