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