C:
char c = '\u2190';
printf("%c\n", c); // Output: ←
JavaScript:
const char = '\u2190';
console.log(char); // Output: ←
Java:
char c = '\u2190';
System.out.println(c); // Output: ←
JSON:
{"text": "\u2190"} // Value: ←
Python:
char = '\u2190'
print(char) # Output: ←
Perl:
my $char = "\x{2190}";
print $char; # Output: ←
PHP:
$char = "\x{2190}";
echo $char; // Output: ←
Ruby:
char = "\u{2190}"
puts char # Output: ←
Rust:
let c = '\u{2190}';
println!("{}", c); // Output: ←
Go:
char := '\u2190'
fmt.Printf("%c\n", char) // Output: ←
CSS:
/* CSS content property */
.element::before {
content: "\002190"; /* 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%90
MD5:
fe98e12bb396ee46bf88efa6fc55ac08
SHA1:
8179643cdc8084e2323cd26880bacfe703d6b2dc
Base64:
4oaQ