C:
char c = '\u28A8';
printf("%c\n", c); // Output: ⢨
JavaScript:
const char = '\u28A8';
console.log(char); // Output: ⢨
Java:
char c = '\u28A8';
System.out.println(c); // Output: ⢨
JSON:
{"text": "\u28A8"} // Value: ⢨
Python:
char = '\u28A8'
print(char) # Output: ⢨
Perl:
my $char = "\x{28A8}";
print $char; # Output: ⢨
PHP:
$char = "\x{28A8}";
echo $char; // Output: ⢨
Ruby:
char = "\u{28A8}"
puts char # Output: ⢨
Rust:
let c = '\u{28A8}';
println!("{}", c); // Output: ⢨
Go:
char := '\u28A8'
fmt.Printf("%c\n", char) // Output: ⢨
CSS:
/* CSS content property */
.element::before {
content: "\0028A8"; /* 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%A2%A8
MD5:
bf2421be0d800fc4bdde445abaec4c88
SHA1:
f6de3fae7e3ec721f3e0a382c885cb36d77f0573
Base64:
4qKo