C:
char c = '\u2722';
printf("%c\n", c); // Output: ✢
JavaScript:
const char = '\u2722';
console.log(char); // Output: ✢
Java:
char c = '\u2722';
System.out.println(c); // Output: ✢
JSON:
{"text": "\u2722"} // Value: ✢
Python:
char = '\u2722'
print(char) # Output: ✢
Perl:
my $char = "\x{2722}";
print $char; # Output: ✢
PHP:
$char = "\x{2722}";
echo $char; // Output: ✢
Ruby:
char = "\u{2722}"
puts char # Output: ✢
Rust:
let c = '\u{2722}';
println!("{}", c); // Output: ✢
Go:
char := '\u2722'
fmt.Printf("%c\n", char) // Output: ✢
CSS:
/* CSS content property */
.element::before {
content: "\002722"; /* 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%A2
MD5:
e6d70726250ef407d0e3bdd5a221c9c2
SHA1:
1b24d7255d6ae9ef8ab36ff763759701fe35ded8
Base64:
4pyi