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==