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