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