C:
char c = '\u2197';
printf("%c\n", c); // Output: ↗
JavaScript:
const char = '\u2197';
console.log(char); // Output: ↗
Java:
char c = '\u2197';
System.out.println(c); // Output: ↗
JSON:
{"text": "\u2197"} // Value: ↗
Python:
char = '\u2197'
print(char) # Output: ↗
Perl:
my $char = "\x{2197}";
print $char; # Output: ↗
PHP:
$char = "\x{2197}";
echo $char; // Output: ↗
Ruby:
char = "\u{2197}"
puts char # Output: ↗
Rust:
let c = '\u{2197}';
println!("{}", c); // Output: ↗
Go:
char := '\u2197'
fmt.Printf("%c\n", char) // Output: ↗
CSS:
/* CSS content property */
.element::before {
content: "\002197"; /* 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%97
MD5:
3939dfd14281566de31e4e083ad2e39e
SHA1:
6564582d822d8f597bd3dee546f42770cc1d8f88
Base64:
4oaX