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