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