C:
char c = '\u272F';
printf("%c\n", c); // Output: ✯
JavaScript:
const char = '\u272F';
console.log(char); // Output: ✯
Java:
char c = '\u272F';
System.out.println(c); // Output: ✯
JSON:
{"text": "\u272F"} // Value: ✯
Python:
char = '\u272F'
print(char) # Output: ✯
Perl:
my $char = "\x{272F}";
print $char; # Output: ✯
PHP:
$char = "\x{272F}";
echo $char; // Output: ✯
Ruby:
char = "\u{272F}"
puts char # Output: ✯
Rust:
let c = '\u{272F}';
println!("{}", c); // Output: ✯
Go:
char := '\u272F'
fmt.Printf("%c\n", char) // Output: ✯
CSS:
/* CSS content property */
.element::before {
content: "\00272F"; /* 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%AF
MD5:
8be05b262d4e10dd9928487bdfabf59d
SHA1:
471c4834dae86ac351a0c59792b9a50d3732436f
Base64:
4pyv