C:
char c = '\u2750';
printf("%c\n", c); // Output: ❐
JavaScript:
const char = '\u2750';
console.log(char); // Output: ❐
Java:
char c = '\u2750';
System.out.println(c); // Output: ❐
JSON:
{"text": "\u2750"} // Value: ❐
Python:
char = '\u2750'
print(char) # Output: ❐
Perl:
my $char = "\x{2750}";
print $char; # Output: ❐
PHP:
$char = "\x{2750}";
echo $char; // Output: ❐
Ruby:
char = "\u{2750}"
puts char # Output: ❐
Rust:
let c = '\u{2750}';
println!("{}", c); // Output: ❐
Go:
char := '\u2750'
fmt.Printf("%c\n", char) // Output: ❐
CSS:
/* CSS content property */
.element::before {
content: "\002750"; /* 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%90
MD5:
ac6fabf60cf29200041c5259caa43f0f
SHA1:
c3298883191cd416bbc430f4fd789986d8d43a3c
Base64:
4p2Q