C:
char c = '\u22A0';
printf("%c\n", c); // Output: ⊠
JavaScript:
const char = '\u22A0';
console.log(char); // Output: ⊠
Java:
char c = '\u22A0';
System.out.println(c); // Output: ⊠
JSON:
{"text": "\u22A0"} // Value: ⊠
Python:
char = '\u22A0'
print(char) # Output: ⊠
Perl:
my $char = "\x{22A0}";
print $char; # Output: ⊠
PHP:
$char = "\x{22A0}";
echo $char; // Output: ⊠
Ruby:
char = "\u{22A0}"
puts char # Output: ⊠
Rust:
let c = '\u{22A0}';
println!("{}", c); // Output: ⊠
Go:
char := '\u22A0'
fmt.Printf("%c\n", char) // Output: ⊠
CSS:
/* CSS content property */
.element::before {
content: "\0022A0"; /* 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%8A%A0
MD5:
3c54fbad7fcfbe77cb0adb836d5a04e2
SHA1:
5044529d9746d3e2358d8acde47b02b5c750a6a8
Base64:
4oqg