C:
char c = '\u2787';
printf("%c\n", c); // Output: ➇
JavaScript:
const char = '\u2787';
console.log(char); // Output: ➇
Java:
char c = '\u2787';
System.out.println(c); // Output: ➇
JSON:
{"text": "\u2787"} // Value: ➇
Python:
char = '\u2787'
print(char) # Output: ➇
Perl:
my $char = "\x{2787}";
print $char; # Output: ➇
PHP:
$char = "\x{2787}";
echo $char; // Output: ➇
Ruby:
char = "\u{2787}"
puts char # Output: ➇
Rust:
let c = '\u{2787}';
println!("{}", c); // Output: ➇
Go:
char := '\u2787'
fmt.Printf("%c\n", char) // Output: ➇
CSS:
/* CSS content property */
.element::before {
content: "\002787"; /* 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%87
MD5:
ef6823805e6f722e8b40d2eade6e95d7
SHA1:
c6f623edfe1a90613e87076d9c752d06ac726c81
Base64:
4p6H