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