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