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