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