C:
char c = '\u1F743';
printf("%c\n", c); // Output: 🝃
JavaScript:
const char = '\u1F743';
console.log(char); // Output: 🝃
Java:
char c = '\u1F743';
System.out.println(c); // Output: 🝃
JSON:
{"text": "\u1F743"} // Value: 🝃
Python:
char = '\u1F743'
print(char) # Output: 🝃
Perl:
my $char = "\x{1F743}";
print $char; # Output: 🝃
PHP:
$char = "\x{1F743}";
echo $char; // Output: 🝃
Ruby:
char = "\u{1F743}"
puts char # Output: 🝃
Rust:
let c = '\u{1F743}';
println!("{}", c); // Output: 🝃
Go:
char := '\u1F743'
fmt.Printf("%c\n", char) // Output: 🝃
CSS:
/* CSS content property */
.element::before {
content: "\01F743"; /* 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%9D%83
MD5:
92886e1b83130383d9d73d075b17c90c
SHA1:
12780d8fa2e99edc5a6d29e7a8107a35226be890
Base64:
8J+dgw==