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