C:
char c = '\u2023';
printf("%c\n", c); // Output: ‣
JavaScript:
const char = '\u2023';
console.log(char); // Output: ‣
Java:
char c = '\u2023';
System.out.println(c); // Output: ‣
JSON:
{"text": "\u2023"} // Value: ‣
Python:
char = '\u2023'
print(char) # Output: ‣
Perl:
my $char = "\x{2023}";
print $char; # Output: ‣
PHP:
$char = "\x{2023}";
echo $char; // Output: ‣
Ruby:
char = "\u{2023}"
puts char # Output: ‣
Rust:
let c = '\u{2023}';
println!("{}", c); // Output: ‣
Go:
char := '\u2023'
fmt.Printf("%c\n", char) // Output: ‣
CSS:
/* CSS content property */
.element::before {
content: "\002023"; /* 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%80%A3
MD5:
ef1aef28147aaf383af72bec33a88d5c
SHA1:
ef26b09684d1c070a8342e71d62404514da5f5f9
Base64:
4oCj