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