C:
char c = '\u2219';
printf("%c\n", c); // Output: ∙
JavaScript:
const char = '\u2219';
console.log(char); // Output: ∙
Java:
char c = '\u2219';
System.out.println(c); // Output: ∙
JSON:
{"text": "\u2219"} // Value: ∙
Python:
char = '\u2219'
print(char) # Output: ∙
Perl:
my $char = "\x{2219}";
print $char; # Output: ∙
PHP:
$char = "\x{2219}";
echo $char; // Output: ∙
Ruby:
char = "\u{2219}"
puts char # Output: ∙
Rust:
let c = '\u{2219}';
println!("{}", c); // Output: ∙
Go:
char := '\u2219'
fmt.Printf("%c\n", char) // Output: ∙
CSS:
/* CSS content property */
.element::before {
content: "\002219"; /* 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%99
MD5:
7ad230af211d13476ca2fee7c2817db9
SHA1:
60adee8a2be7467fde7ed3cefaeac9b450413ef1
Base64:
4oiZ