C:
char c = '\u2202';
printf("%c\n", c); // Output: ∂
JavaScript:
const char = '\u2202';
console.log(char); // Output: ∂
Java:
char c = '\u2202';
System.out.println(c); // Output: ∂
JSON:
{"text": "\u2202"} // Value: ∂
Python:
char = '\u2202'
print(char) # Output: ∂
Perl:
my $char = "\x{2202}";
print $char; # Output: ∂
PHP:
$char = "\x{2202}";
echo $char; // Output: ∂
Ruby:
char = "\u{2202}"
puts char # Output: ∂
Rust:
let c = '\u{2202}';
println!("{}", c); // Output: ∂
Go:
char := '\u2202'
fmt.Printf("%c\n", char) // Output: ∂
CSS:
/* CSS content property */
.element::before {
content: "\002202"; /* 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%88%82
MD5:
51a1e5a9b75a21cd563351ec422ad2eb
SHA1:
28b49b0f19a4d81c8b30451b1b756e3e8ec1f97a
Base64:
4oiC