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