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