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