C:
char c = '\u2964';
printf("%c\n", c); // Output: ⥤
JavaScript:
const char = '\u2964';
console.log(char); // Output: ⥤
Java:
char c = '\u2964';
System.out.println(c); // Output: ⥤
JSON:
{"text": "\u2964"} // Value: ⥤
Python:
char = '\u2964'
print(char) # Output: ⥤
Perl:
my $char = "\x{2964}";
print $char; # Output: ⥤
PHP:
$char = "\x{2964}";
echo $char; // Output: ⥤
Ruby:
char = "\u{2964}"
puts char # Output: ⥤
Rust:
let c = '\u{2964}';
println!("{}", c); // Output: ⥤
Go:
char := '\u2964'
fmt.Printf("%c\n", char) // Output: ⥤
CSS:
/* CSS content property */
.element::before {
content: "\002964"; /* 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%A4
MD5:
adafe2249238f364a96f655e96ca8cf8
SHA1:
896c6d957d378657ff8ad581aea17083e79082dc
Base64:
4qWk