C:
char c = '\u2AD0';
printf("%c\n", c); // Output: ⫐
JavaScript:
const char = '\u2AD0';
console.log(char); // Output: ⫐
Java:
char c = '\u2AD0';
System.out.println(c); // Output: ⫐
JSON:
{"text": "\u2AD0"} // Value: ⫐
Python:
char = '\u2AD0'
print(char) # Output: ⫐
Perl:
my $char = "\x{2AD0}";
print $char; # Output: ⫐
PHP:
$char = "\x{2AD0}";
echo $char; // Output: ⫐
Ruby:
char = "\u{2AD0}"
puts char # Output: ⫐
Rust:
let c = '\u{2AD0}';
println!("{}", c); // Output: ⫐
Go:
char := '\u2AD0'
fmt.Printf("%c\n", char) // Output: ⫐
CSS:
/* CSS content property */
.element::before {
content: "\002AD0"; /* 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%AB%90
MD5:
4a684ea517da1973932020234bbfd58e
SHA1:
c6314a89f64f0e1827755db541de2596ec22e1ec
Base64:
4quQ