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