C:
char c = '\u2759';
printf("%c\n", c); // Output: ❙
JavaScript:
const char = '\u2759';
console.log(char); // Output: ❙
Java:
char c = '\u2759';
System.out.println(c); // Output: ❙
JSON:
{"text": "\u2759"} // Value: ❙
Python:
char = '\u2759'
print(char) # Output: ❙
Perl:
my $char = "\x{2759}";
print $char; # Output: ❙
PHP:
$char = "\x{2759}";
echo $char; // Output: ❙
Ruby:
char = "\u{2759}"
puts char # Output: ❙
Rust:
let c = '\u{2759}';
println!("{}", c); // Output: ❙
Go:
char := '\u2759'
fmt.Printf("%c\n", char) // Output: ❙
CSS:
/* CSS content property */
.element::before {
content: "\002759"; /* 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%9D%99
MD5:
ad4e9d3f66a1a1b2317bc63a452b10fb
SHA1:
1bc0caba2f2ef3fe5a6b3fd088c945724a8e95b0
Base64:
4p2Z