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