C:
char c = '\u2731';
printf("%c\n", c); // Output: ✱
JavaScript:
const char = '\u2731';
console.log(char); // Output: ✱
Java:
char c = '\u2731';
System.out.println(c); // Output: ✱
JSON:
{"text": "\u2731"} // Value: ✱
Python:
char = '\u2731'
print(char) # Output: ✱
Perl:
my $char = "\x{2731}";
print $char; # Output: ✱
PHP:
$char = "\x{2731}";
echo $char; // Output: ✱
Ruby:
char = "\u{2731}"
puts char # Output: ✱
Rust:
let c = '\u{2731}';
println!("{}", c); // Output: ✱
Go:
char := '\u2731'
fmt.Printf("%c\n", char) // Output: ✱
CSS:
/* CSS content property */
.element::before {
content: "\002731"; /* 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%B1
MD5:
9adf741fcbe9d8e833650ffb27b7e88d
SHA1:
8aa567de40d2b374b9c90cc70a44c53c46ea76e9
Base64:
4pyx