C:
char c = '\u2191';
printf("%c\n", c); // Output: ↑
JavaScript:
const char = '\u2191';
console.log(char); // Output: ↑
Java:
char c = '\u2191';
System.out.println(c); // Output: ↑
JSON:
{"text": "\u2191"} // Value: ↑
Python:
char = '\u2191'
print(char) # Output: ↑
Perl:
my $char = "\x{2191}";
print $char; # Output: ↑
PHP:
$char = "\x{2191}";
echo $char; // Output: ↑
Ruby:
char = "\u{2191}"
puts char # Output: ↑
Rust:
let c = '\u{2191}';
println!("{}", c); // Output: ↑
Go:
char := '\u2191'
fmt.Printf("%c\n", char) // Output: ↑
CSS:
/* CSS content property */
.element::before {
content: "\002191"; /* 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%91
MD5:
fa1be6f87bdc80f5e04c11c0f2628994
SHA1:
9555ffd723416b08221db7640ba91557e0098b72
Base64:
4oaR