C:
char c = '\u2727';
printf("%c\n", c); // Output: ✧
JavaScript:
const char = '\u2727';
console.log(char); // Output: ✧
Java:
char c = '\u2727';
System.out.println(c); // Output: ✧
JSON:
{"text": "\u2727"} // Value: ✧
Python:
char = '\u2727'
print(char) # Output: ✧
Perl:
my $char = "\x{2727}";
print $char; # Output: ✧
PHP:
$char = "\x{2727}";
echo $char; // Output: ✧
Ruby:
char = "\u{2727}"
puts char # Output: ✧
Rust:
let c = '\u{2727}';
println!("{}", c); // Output: ✧
Go:
char := '\u2727'
fmt.Printf("%c\n", char) // Output: ✧
CSS:
/* CSS content property */
.element::before {
content: "\002727"; /* 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%A7
MD5:
94b2d22d4f106e5cbae5bbf33637fd07
SHA1:
7107f38b47b3e19dec7b56699a4ff17ff6a9a7b8
Base64:
4pyn