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