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