C:
char c = '\u20DF';
printf("%c\n", c); // Output: ⃟
JavaScript:
const char = '\u20DF';
console.log(char); // Output: ⃟
Java:
char c = '\u20DF';
System.out.println(c); // Output: ⃟
JSON:
{"text": "\u20DF"} // Value: ⃟
Python:
char = '\u20DF'
print(char) # Output: ⃟
Perl:
my $char = "\x{20DF}";
print $char; # Output: ⃟
PHP:
$char = "\x{20DF}";
echo $char; // Output: ⃟
Ruby:
char = "\u{20DF}"
puts char # Output: ⃟
Rust:
let c = '\u{20DF}';
println!("{}", c); // Output: ⃟
Go:
char := '\u20DF'
fmt.Printf("%c\n", char) // Output: ⃟
CSS:
/* CSS content property */
.element::before {
content: "\0020DF"; /* 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%83%9F
MD5:
5f6bb65ae3c6da48de94617d0bc76ccf
SHA1:
7ea92a9de95dbe050beea8553fdaed8f28941832
Base64:
4oOf