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