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