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