C:
char c = '\u21AA';
printf("%c\n", c); // Output: ↪
JavaScript:
const char = '\u21AA';
console.log(char); // Output: ↪
Java:
char c = '\u21AA';
System.out.println(c); // Output: ↪
JSON:
{"text": "\u21AA"} // Value: ↪
Python:
char = '\u21AA'
print(char) # Output: ↪
Perl:
my $char = "\x{21AA}";
print $char; # Output: ↪
PHP:
$char = "\x{21AA}";
echo $char; // Output: ↪
Ruby:
char = "\u{21AA}"
puts char # Output: ↪
Rust:
let c = '\u{21AA}';
println!("{}", c); // Output: ↪
Go:
char := '\u21AA'
fmt.Printf("%c\n", char) // Output: ↪
CSS:
/* CSS content property */
.element::before {
content: "\0021AA"; /* 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%86%AA
MD5:
f872bef54e57fbd8e3457d8439422265
SHA1:
3592af5e38ce89e65fd27bba6eb3eb7ed0aeb390
Base64:
4oaq