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