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