C:
char c = '\u1F5C6';
printf("%c\n", c); // Output: 🗆
JavaScript:
const char = '\u1F5C6';
console.log(char); // Output: 🗆
Java:
char c = '\u1F5C6';
System.out.println(c); // Output: 🗆
JSON:
{"text": "\u1F5C6"} // Value: 🗆
Python:
char = '\u1F5C6'
print(char) # Output: 🗆
Perl:
my $char = "\x{1F5C6}";
print $char; # Output: 🗆
PHP:
$char = "\x{1F5C6}";
echo $char; // Output: 🗆
Ruby:
char = "\u{1F5C6}"
puts char # Output: 🗆
Rust:
let c = '\u{1F5C6}';
println!("{}", c); // Output: 🗆
Go:
char := '\u1F5C6'
fmt.Printf("%c\n", char) // Output: 🗆
CSS:
/* CSS content property */
.element::before {
content: "\01F5C6"; /* 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=%F0%9F%97%86
MD5:
6dfe671e55d1245a4ddc550cf9f9e053
SHA1:
dd0ca2449c8b9760fbc08e988fc1722055e7b10b
Base64:
8J+Xhg==