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