C:
char c = '\u2730';
printf("%c\n", c); // Output: ✰
JavaScript:
const char = '\u2730';
console.log(char); // Output: ✰
Java:
char c = '\u2730';
System.out.println(c); // Output: ✰
JSON:
{"text": "\u2730"} // Value: ✰
Python:
char = '\u2730'
print(char) # Output: ✰
Perl:
my $char = "\x{2730}";
print $char; # Output: ✰
PHP:
$char = "\x{2730}";
echo $char; // Output: ✰
Ruby:
char = "\u{2730}"
puts char # Output: ✰
Rust:
let c = '\u{2730}';
println!("{}", c); // Output: ✰
Go:
char := '\u2730'
fmt.Printf("%c\n", char) // Output: ✰
CSS:
/* CSS content property */
.element::before {
content: "\002730"; /* 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%B0
MD5:
e89b7ee463a02804bb7afa20b9b84769
SHA1:
777d2ad655e2272db4a30ed33a76929a33a9cd8e
Base64:
4pyw