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