C:
char c = '\u2188';
printf("%c\n", c); // Output: ↈ
JavaScript:
const char = '\u2188';
console.log(char); // Output: ↈ
Java:
char c = '\u2188';
System.out.println(c); // Output: ↈ
JSON:
{"text": "\u2188"} // Value: ↈ
Python:
char = '\u2188'
print(char) # Output: ↈ
Perl:
my $char = "\x{2188}";
print $char; # Output: ↈ
PHP:
$char = "\x{2188}";
echo $char; // Output: ↈ
Ruby:
char = "\u{2188}"
puts char # Output: ↈ
Rust:
let c = '\u{2188}';
println!("{}", c); // Output: ↈ
Go:
char := '\u2188'
fmt.Printf("%c\n", char) // Output: ↈ
CSS:
/* CSS content property */
.element::before {
content: "\002188"; /* 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%88
MD5:
74a099484aa58a5759dd4c570edb3ddd
SHA1:
e76073aea76f3d90a0f91bd7de547199fb54df60
Base64:
4oaI