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