C:
char c = '\u1F7AD';
printf("%c\n", c); // Output: 🞭
JavaScript:
const char = '\u1F7AD';
console.log(char); // Output: 🞭
Java:
char c = '\u1F7AD';
System.out.println(c); // Output: 🞭
JSON:
{"text": "\u1F7AD"} // Value: 🞭
Python:
char = '\u1F7AD'
print(char) # Output: 🞭
Perl:
my $char = "\x{1F7AD}";
print $char; # Output: 🞭
PHP:
$char = "\x{1F7AD}";
echo $char; // Output: 🞭
Ruby:
char = "\u{1F7AD}"
puts char # Output: 🞭
Rust:
let c = '\u{1F7AD}';
println!("{}", c); // Output: 🞭
Go:
char := '\u1F7AD'
fmt.Printf("%c\n", char) // Output: 🞭
CSS:
/* CSS content property */
.element::before {
content: "\01F7AD"; /* 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%9E%AD
MD5:
910004747dae5f64c54b108bb513c0fa
SHA1:
55621bf68eeabcec8b262bf84769fdd622a52c8c
Base64:
8J+erQ==