C:
char c = '\u1F871';
printf("%c\n", c); // Output: ๐กฑ
JavaScript:
const char = '\u1F871';
console.log(char); // Output: ๐กฑ
Java:
char c = '\u1F871';
System.out.println(c); // Output: ๐กฑ
JSON:
{"text": "\u1F871"} // Value: ๐กฑ
Python:
char = '\u1F871'
print(char) # Output: ๐กฑ
Perl:
my $char = "\x{1F871}";
print $char; # Output: ๐กฑ
PHP:
$char = "\x{1F871}";
echo $char; // Output: ๐กฑ
Ruby:
char = "\u{1F871}"
puts char # Output: ๐กฑ
Rust:
let c = '\u{1F871}';
println!("{}", c); // Output: ๐กฑ
Go:
char := '\u1F871'
fmt.Printf("%c\n", char) // Output: ๐กฑ
CSS:
/* CSS content property */
.element::before {
content: "\01F871"; /* 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%A1%B1
MD5:
c38bb11edf319bdc1e7b15e5970d43ff
SHA1:
153c9b6c409dbec5ba3686124f4f9abe9ef2d874
Base64:
8J+hsQ==