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