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