C:
char c = '\u2013';
printf("%c\n", c); // Output: –
JavaScript:
const char = '\u2013';
console.log(char); // Output: –
Java:
char c = '\u2013';
System.out.println(c); // Output: –
JSON:
{"text": "\u2013"} // Value: –
Python:
char = '\u2013'
print(char) # Output: –
Perl:
my $char = "\x{2013}";
print $char; # Output: –
PHP:
$char = "\x{2013}";
echo $char; // Output: –
Ruby:
char = "\u{2013}"
puts char # Output: –
Rust:
let c = '\u{2013}';
println!("{}", c); // Output: –
Go:
char := '\u2013'
fmt.Printf("%c\n", char) // Output: –
CSS:
/* CSS content property */
.element::before {
content: "\002013"; /* 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%93
MD5:
37ce74088416f28dc9bb04355c2e5a28
SHA1:
0e467cbe430412b91e1bae0a4b949c8a3f628855
Base64:
4oCT