C:
char c = '\u275D';
printf("%c\n", c); // Output: ❝
JavaScript:
const char = '\u275D';
console.log(char); // Output: ❝
Java:
char c = '\u275D';
System.out.println(c); // Output: ❝
JSON:
{"text": "\u275D"} // Value: ❝
Python:
char = '\u275D'
print(char) # Output: ❝
Perl:
my $char = "\x{275D}";
print $char; # Output: ❝
PHP:
$char = "\x{275D}";
echo $char; // Output: ❝
Ruby:
char = "\u{275D}"
puts char # Output: ❝
Rust:
let c = '\u{275D}';
println!("{}", c); // Output: ❝
Go:
char := '\u275D'
fmt.Printf("%c\n", char) // Output: ❝
CSS:
/* CSS content property */
.element::before {
content: "\00275D"; /* 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%9D%9D
MD5:
94be3f9e99c730fc29238ed4e8b4ee59
SHA1:
d3fe581a86bb051df5c0676f837fd969509286fd
Base64:
4p2d