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