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