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