C:
char c = '\u2186';
printf("%c\n", c); // Output: ↆ
JavaScript:
const char = '\u2186';
console.log(char); // Output: ↆ
Java:
char c = '\u2186';
System.out.println(c); // Output: ↆ
JSON:
{"text": "\u2186"} // Value: ↆ
Python:
char = '\u2186'
print(char) # Output: ↆ
Perl:
my $char = "\x{2186}";
print $char; # Output: ↆ
PHP:
$char = "\x{2186}";
echo $char; // Output: ↆ
Ruby:
char = "\u{2186}"
puts char # Output: ↆ
Rust:
let c = '\u{2186}';
println!("{}", c); // Output: ↆ
Go:
char := '\u2186'
fmt.Printf("%c\n", char) // Output: ↆ
CSS:
/* CSS content property */
.element::before {
content: "\002186"; /* 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%86
MD5:
2f94b56790fb5bf8ce395d4d1d3b7876
SHA1:
4658f3a13d6883508aa975f3814c3d78466eb812
Base64:
4oaG