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