C:
char c = '\u27A3';
printf("%c\n", c); // Output: ➣
JavaScript:
const char = '\u27A3';
console.log(char); // Output: ➣
Java:
char c = '\u27A3';
System.out.println(c); // Output: ➣
JSON:
{"text": "\u27A3"} // Value: ➣
Python:
char = '\u27A3'
print(char) # Output: ➣
Perl:
my $char = "\x{27A3}";
print $char; # Output: ➣
PHP:
$char = "\x{27A3}";
echo $char; // Output: ➣
Ruby:
char = "\u{27A3}"
puts char # Output: ➣
Rust:
let c = '\u{27A3}';
println!("{}", c); // Output: ➣
Go:
char := '\u27A3'
fmt.Printf("%c\n", char) // Output: ➣
CSS:
/* CSS content property */
.element::before {
content: "\0027A3"; /* 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%A3
MD5:
05c8d0f1069836336dd740723b82741b
SHA1:
85e82277639b0057b072b9456e8c09bdfef2323e
Base64:
4p6j