C:
char c = '\u2732';
printf("%c\n", c); // Output: ✲
JavaScript:
const char = '\u2732';
console.log(char); // Output: ✲
Java:
char c = '\u2732';
System.out.println(c); // Output: ✲
JSON:
{"text": "\u2732"} // Value: ✲
Python:
char = '\u2732'
print(char) # Output: ✲
Perl:
my $char = "\x{2732}";
print $char; # Output: ✲
PHP:
$char = "\x{2732}";
echo $char; // Output: ✲
Ruby:
char = "\u{2732}"
puts char # Output: ✲
Rust:
let c = '\u{2732}';
println!("{}", c); // Output: ✲
Go:
char := '\u2732'
fmt.Printf("%c\n", char) // Output: ✲
CSS:
/* CSS content property */
.element::before {
content: "\002732"; /* 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%B2
MD5:
1f3d3daa6780b399e1daeae438acdc63
SHA1:
854e80b5319820725ccff896bd67be80b3bbc3de
Base64:
4pyy