C:
char c = '\u2187';
printf("%c\n", c); // Output: ↇ
JavaScript:
const char = '\u2187';
console.log(char); // Output: ↇ
Java:
char c = '\u2187';
System.out.println(c); // Output: ↇ
JSON:
{"text": "\u2187"} // Value: ↇ
Python:
char = '\u2187'
print(char) # Output: ↇ
Perl:
my $char = "\x{2187}";
print $char; # Output: ↇ
PHP:
$char = "\x{2187}";
echo $char; // Output: ↇ
Ruby:
char = "\u{2187}"
puts char # Output: ↇ
Rust:
let c = '\u{2187}';
println!("{}", c); // Output: ↇ
Go:
char := '\u2187'
fmt.Printf("%c\n", char) // Output: ↇ
CSS:
/* CSS content property */
.element::before {
content: "\002187"; /* 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%87
MD5:
ea8621f76c15f8839ead913be7604b51
SHA1:
27757509786d8b0784453c81122fdca8ea8caf17
Base64:
4oaH