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