C:
char c = '\u2848';
printf("%c\n", c); // Output: ⡈
JavaScript:
const char = '\u2848';
console.log(char); // Output: ⡈
Java:
char c = '\u2848';
System.out.println(c); // Output: ⡈
JSON:
{"text": "\u2848"} // Value: ⡈
Python:
char = '\u2848'
print(char) # Output: ⡈
Perl:
my $char = "\x{2848}";
print $char; # Output: ⡈
PHP:
$char = "\x{2848}";
echo $char; // Output: ⡈
Ruby:
char = "\u{2848}"
puts char # Output: ⡈
Rust:
let c = '\u{2848}';
println!("{}", c); // Output: ⡈
Go:
char := '\u2848'
fmt.Printf("%c\n", char) // Output: ⡈
CSS:
/* CSS content property */
.element::before {
content: "\002848"; /* 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%A1%88
MD5:
ea7829b038f077fe3c218f417c163f8e
SHA1:
bf8558ed714790d3fc2ad23c9527197b7de1c5ef
Base64:
4qGI