C:
char c = '\u1F3BE';
printf("%c\n", c); // Output: ๐พ
JavaScript:
const char = '\u1F3BE';
console.log(char); // Output: ๐พ
Java:
char c = '\u1F3BE';
System.out.println(c); // Output: ๐พ
JSON:
{"text": "\u1F3BE"} // Value: ๐พ
Python:
char = '\u1F3BE'
print(char) # Output: ๐พ
Perl:
my $char = "\x{1F3BE}";
print $char; # Output: ๐พ
PHP:
$char = "\x{1F3BE}";
echo $char; // Output: ๐พ
Ruby:
char = "\u{1F3BE}"
puts char # Output: ๐พ
Rust:
let c = '\u{1F3BE}';
println!("{}", c); // Output: ๐พ
Go:
char := '\u1F3BE'
fmt.Printf("%c\n", char) // Output: ๐พ
CSS:
/* CSS content property */
.element::before {
content: "\01F3BE"; /* 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%8E%BE
MD5:
f0138f70f5790659a087d74132a66653
SHA1:
9285dd86189ba24cb4b375cfbdd57d2f164b208d
Base64:
8J+Ovg==