C:
char c = '\u2733';
printf("%c\n", c); // Output: ✳
JavaScript:
const char = '\u2733';
console.log(char); // Output: ✳
Java:
char c = '\u2733';
System.out.println(c); // Output: ✳
JSON:
{"text": "\u2733"} // Value: ✳
Python:
char = '\u2733'
print(char) # Output: ✳
Perl:
my $char = "\x{2733}";
print $char; # Output: ✳
PHP:
$char = "\x{2733}";
echo $char; // Output: ✳
Ruby:
char = "\u{2733}"
puts char # Output: ✳
Rust:
let c = '\u{2733}';
println!("{}", c); // Output: ✳
Go:
char := '\u2733'
fmt.Printf("%c\n", char) // Output: ✳
CSS:
/* CSS content property */
.element::before {
content: "\002733"; /* 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%B3
MD5:
b04c07435ab070e279b7d4ed388a8c4d
SHA1:
194cceee9235ff87decdc08c5fdbc482287d4cc2
Base64:
4pyz