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