C:
char c = '\u2010';
printf("%c\n", c); // Output: ‐
JavaScript:
const char = '\u2010';
console.log(char); // Output: ‐
Java:
char c = '\u2010';
System.out.println(c); // Output: ‐
JSON:
{"text": "\u2010"} // Value: ‐
Python:
char = '\u2010'
print(char) # Output: ‐
Perl:
my $char = "\x{2010}";
print $char; # Output: ‐
PHP:
$char = "\x{2010}";
echo $char; // Output: ‐
Ruby:
char = "\u{2010}"
puts char # Output: ‐
Rust:
let c = '\u{2010}';
println!("{}", c); // Output: ‐
Go:
char := '\u2010'
fmt.Printf("%c\n", char) // Output: ‐
CSS:
/* CSS content property */
.element::before {
content: "\002010"; /* 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%90
MD5:
83f1d12bcdeda361474e8829b4eaf66c
SHA1:
bd73dfe0db9029f65970045a35a333154a4841c0
Base64:
4oCQ