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