C:
char c = '\u2751';
printf("%c\n", c); // Output: ❑
JavaScript:
const char = '\u2751';
console.log(char); // Output: ❑
Java:
char c = '\u2751';
System.out.println(c); // Output: ❑
JSON:
{"text": "\u2751"} // Value: ❑
Python:
char = '\u2751'
print(char) # Output: ❑
Perl:
my $char = "\x{2751}";
print $char; # Output: ❑
PHP:
$char = "\x{2751}";
echo $char; // Output: ❑
Ruby:
char = "\u{2751}"
puts char # Output: ❑
Rust:
let c = '\u{2751}';
println!("{}", c); // Output: ❑
Go:
char := '\u2751'
fmt.Printf("%c\n", char) // Output: ❑
CSS:
/* CSS content property */
.element::before {
content: "\002751"; /* 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%91
MD5:
7fd91a5741c3a8121dc0182303c8f78c
SHA1:
25448642857da463652f6f835484567bda4aadf4
Base64:
4p2R