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