C:
char c = '\u2768';
printf("%c\n", c); // Output: ❨
JavaScript:
const char = '\u2768';
console.log(char); // Output: ❨
Java:
char c = '\u2768';
System.out.println(c); // Output: ❨
JSON:
{"text": "\u2768"} // Value: ❨
Python:
char = '\u2768'
print(char) # Output: ❨
Perl:
my $char = "\x{2768}";
print $char; # Output: ❨
PHP:
$char = "\x{2768}";
echo $char; // Output: ❨
Ruby:
char = "\u{2768}"
puts char # Output: ❨
Rust:
let c = '\u{2768}';
println!("{}", c); // Output: ❨
Go:
char := '\u2768'
fmt.Printf("%c\n", char) // Output: ❨
CSS:
/* CSS content property */
.element::before {
content: "\002768"; /* 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%9D%A8
MD5:
ac2c83f2c71e4385709fdd49ea07d7ff
SHA1:
520374e1ffbcff70d7b71fe82098e7fdfabd6590
Base64:
4p2o