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