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