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