C:
char c = '\u2966';
printf("%c\n", c); // Output: ⥦
JavaScript:
const char = '\u2966';
console.log(char); // Output: ⥦
Java:
char c = '\u2966';
System.out.println(c); // Output: ⥦
JSON:
{"text": "\u2966"} // Value: ⥦
Python:
char = '\u2966'
print(char) # Output: ⥦
Perl:
my $char = "\x{2966}";
print $char; # Output: ⥦
PHP:
$char = "\x{2966}";
echo $char; // Output: ⥦
Ruby:
char = "\u{2966}"
puts char # Output: ⥦
Rust:
let c = '\u{2966}';
println!("{}", c); // Output: ⥦
Go:
char := '\u2966'
fmt.Printf("%c\n", char) // Output: ⥦
CSS:
/* CSS content property */
.element::before {
content: "\002966"; /* 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%A6
MD5:
08b2759ba5c7b1551bab4e8b9a072918
SHA1:
a38e624c82307c79663a0300537d7feb6ddf74b4
Base64:
4qWm