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