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