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