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