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