C:
char c = '\u2798';
printf("%c\n", c); // Output: ➘
JavaScript:
const char = '\u2798';
console.log(char); // Output: ➘
Java:
char c = '\u2798';
System.out.println(c); // Output: ➘
JSON:
{"text": "\u2798"} // Value: ➘
Python:
char = '\u2798'
print(char) # Output: ➘
Perl:
my $char = "\x{2798}";
print $char; # Output: ➘
PHP:
$char = "\x{2798}";
echo $char; // Output: ➘
Ruby:
char = "\u{2798}"
puts char # Output: ➘
Rust:
let c = '\u{2798}';
println!("{}", c); // Output: ➘
Go:
char := '\u2798'
fmt.Printf("%c\n", char) // Output: ➘
CSS:
/* CSS content property */
.element::before {
content: "\002798"; /* 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%98
MD5:
bea4091a015ad3d75a13572161fa78cb
SHA1:
91d32767dd2ec2fc5a84de1d6dcf5d961d7ae591
Base64:
4p6Y