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