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