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