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