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