C:
char c = '\u2195';
printf("%c\n", c); // Output: ↕
JavaScript:
const char = '\u2195';
console.log(char); // Output: ↕
Java:
char c = '\u2195';
System.out.println(c); // Output: ↕
JSON:
{"text": "\u2195"} // Value: ↕
Python:
char = '\u2195'
print(char) # Output: ↕
Perl:
my $char = "\x{2195}";
print $char; # Output: ↕
PHP:
$char = "\x{2195}";
echo $char; // Output: ↕
Ruby:
char = "\u{2195}"
puts char # Output: ↕
Rust:
let c = '\u{2195}';
println!("{}", c); // Output: ↕
Go:
char := '\u2195'
fmt.Printf("%c\n", char) // Output: ↕
CSS:
/* CSS content property */
.element::before {
content: "\002195"; /* 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%95
MD5:
84b530d40ea6900a6e32f4a1b0a53501
SHA1:
e6ddf0065cde5e1188b058183ac498393eb84f13
Base64:
4oaV