C:
char c = '\u2018';
printf("%c\n", c); // Output: ‘
JavaScript:
const char = '\u2018';
console.log(char); // Output: ‘
Java:
char c = '\u2018';
System.out.println(c); // Output: ‘
JSON:
{"text": "\u2018"} // Value: ‘
Python:
char = '\u2018'
print(char) # Output: ‘
Perl:
my $char = "\x{2018}";
print $char; # Output: ‘
PHP:
$char = "\x{2018}";
echo $char; // Output: ‘
Ruby:
char = "\u{2018}"
puts char # Output: ‘
Rust:
let c = '\u{2018}';
println!("{}", c); // Output: ‘
Go:
char := '\u2018'
fmt.Printf("%c\n", char) // Output: ‘
CSS:
/* CSS content property */
.element::before {
content: "\002018"; /* 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%98
MD5:
5fe37026e420cb862d7778701b344030
SHA1:
c91f7f18a1af9db19988623ef6a4c28ead03c25f
Base64:
4oCY