C:
char c = '\u2199';
printf("%c\n", c); // Output: ↙
JavaScript:
const char = '\u2199';
console.log(char); // Output: ↙
Java:
char c = '\u2199';
System.out.println(c); // Output: ↙
JSON:
{"text": "\u2199"} // Value: ↙
Python:
char = '\u2199'
print(char) # Output: ↙
Perl:
my $char = "\x{2199}";
print $char; # Output: ↙
PHP:
$char = "\x{2199}";
echo $char; // Output: ↙
Ruby:
char = "\u{2199}"
puts char # Output: ↙
Rust:
let c = '\u{2199}';
println!("{}", c); // Output: ↙
Go:
char := '\u2199'
fmt.Printf("%c\n", char) // Output: ↙
CSS:
/* CSS content property */
.element::before {
content: "\002199"; /* 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%99
MD5:
0c602f0d104cd146851f1bea15095322
SHA1:
95ace1187f5d0c8666a79069b7eb41cd7926d4f3
Base64:
4oaZ