C:
char c = '\u2185';
printf("%c\n", c); // Output: ↅ
JavaScript:
const char = '\u2185';
console.log(char); // Output: ↅ
Java:
char c = '\u2185';
System.out.println(c); // Output: ↅ
JSON:
{"text": "\u2185"} // Value: ↅ
Python:
char = '\u2185'
print(char) # Output: ↅ
Perl:
my $char = "\x{2185}";
print $char; # Output: ↅ
PHP:
$char = "\x{2185}";
echo $char; // Output: ↅ
Ruby:
char = "\u{2185}"
puts char # Output: ↅ
Rust:
let c = '\u{2185}';
println!("{}", c); // Output: ↅ
Go:
char := '\u2185'
fmt.Printf("%c\n", char) // Output: ↅ
CSS:
/* CSS content property */
.element::before {
content: "\002185"; /* 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%85
MD5:
f223113f71e2006b9cf5ede1f91908bd
SHA1:
954c3faf7f5342072f2f56ff0b20616870407b4b
Base64:
4oaF