C:
char c = '\u201A';
printf("%c\n", c); // Output: ‚
JavaScript:
const char = '\u201A';
console.log(char); // Output: ‚
Java:
char c = '\u201A';
System.out.println(c); // Output: ‚
JSON:
{"text": "\u201A"} // Value: ‚
Python:
char = '\u201A'
print(char) # Output: ‚
Perl:
my $char = "\x{201A}";
print $char; # Output: ‚
PHP:
$char = "\x{201A}";
echo $char; // Output: ‚
Ruby:
char = "\u{201A}"
puts char # Output: ‚
Rust:
let c = '\u{201A}';
println!("{}", c); // Output: ‚
Go:
char := '\u201A'
fmt.Printf("%c\n", char) // Output: ‚
CSS:
/* CSS content property */
.element::before {
content: "\00201A"; /* 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%9A
MD5:
58ba7118937e09003b1fa2505001f270
SHA1:
95694c6068ec1901177ffaf977a50c490e9a918d
Base64:
4oCa