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