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