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