C:
char c = '\u301D';
printf("%c\n", c); // Output: 〝
JavaScript:
const char = '\u301D';
console.log(char); // Output: 〝
Java:
char c = '\u301D';
System.out.println(c); // Output: 〝
JSON:
{"text": "\u301D"} // Value: 〝
Python:
char = '\u301D'
print(char) # Output: 〝
Perl:
my $char = "\x{301D}";
print $char; # Output: 〝
PHP:
$char = "\x{301D}";
echo $char; // Output: 〝
Ruby:
char = "\u{301D}"
puts char # Output: 〝
Rust:
let c = '\u{301D}';
println!("{}", c); // Output: 〝
Go:
char := '\u301D'
fmt.Printf("%c\n", char) // Output: 〝
CSS:
/* CSS content property */
.element::before {
content: "\00301D"; /* 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=%E3%80%9D
MD5:
9d281b0e98014e9cb0ddd1ec992c4448
SHA1:
849c927712f347b2b10db0dd13deff7783da92f5
Base64:
44Cd