C:
char c = '\u219D';
printf("%c\n", c); // Output: ↝
JavaScript:
const char = '\u219D';
console.log(char); // Output: ↝
Java:
char c = '\u219D';
System.out.println(c); // Output: ↝
JSON:
{"text": "\u219D"} // Value: ↝
Python:
char = '\u219D'
print(char) # Output: ↝
Perl:
my $char = "\x{219D}";
print $char; # Output: ↝
PHP:
$char = "\x{219D}";
echo $char; // Output: ↝
Ruby:
char = "\u{219D}"
puts char # Output: ↝
Rust:
let c = '\u{219D}';
println!("{}", c); // Output: ↝
Go:
char := '\u219D'
fmt.Printf("%c\n", char) // Output: ↝
CSS:
/* CSS content property */
.element::before {
content: "\00219D"; /* 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%9D
MD5:
4775e45ff21cdb4b024f01fd55a797c3
SHA1:
24396f48aeac674fe25481b93b412215c29061c8
Base64:
4oad