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