C:
char c = '\u272A';
printf("%c\n", c); // Output: ✪
JavaScript:
const char = '\u272A';
console.log(char); // Output: ✪
Java:
char c = '\u272A';
System.out.println(c); // Output: ✪
JSON:
{"text": "\u272A"} // Value: ✪
Python:
char = '\u272A'
print(char) # Output: ✪
Perl:
my $char = "\x{272A}";
print $char; # Output: ✪
PHP:
$char = "\x{272A}";
echo $char; // Output: ✪
Ruby:
char = "\u{272A}"
puts char # Output: ✪
Rust:
let c = '\u{272A}';
println!("{}", c); // Output: ✪
Go:
char := '\u272A'
fmt.Printf("%c\n", char) // Output: ✪
CSS:
/* CSS content property */
.element::before {
content: "\00272A"; /* 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=%E2%9C%AA
MD5:
90a7c1db192c148c500d4452a24fe41a
SHA1:
6903172d318956aeb836312f773b424162ddb545
Base64:
4pyq