C:
char c = '\u2788';
printf("%c\n", c); // Output: ➈
JavaScript:
const char = '\u2788';
console.log(char); // Output: ➈
Java:
char c = '\u2788';
System.out.println(c); // Output: ➈
JSON:
{"text": "\u2788"} // Value: ➈
Python:
char = '\u2788'
print(char) # Output: ➈
Perl:
my $char = "\x{2788}";
print $char; # Output: ➈
PHP:
$char = "\x{2788}";
echo $char; // Output: ➈
Ruby:
char = "\u{2788}"
puts char # Output: ➈
Rust:
let c = '\u{2788}';
println!("{}", c); // Output: ➈
Go:
char := '\u2788'
fmt.Printf("%c\n", char) // Output: ➈
CSS:
/* CSS content property */
.element::before {
content: "\002788"; /* 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%9E%88
MD5:
6948db356664fd77659b69dff2ad768c
SHA1:
d5b3c17f318ffaa466b72c165b25b9d46154b9c3
Base64:
4p6I