C:
char c = '\u235E';
printf("%c\n", c); // Output: ⍞
JavaScript:
const char = '\u235E';
console.log(char); // Output: ⍞
Java:
char c = '\u235E';
System.out.println(c); // Output: ⍞
JSON:
{"text": "\u235E"} // Value: ⍞
Python:
char = '\u235E'
print(char) # Output: ⍞
Perl:
my $char = "\x{235E}";
print $char; # Output: ⍞
PHP:
$char = "\x{235E}";
echo $char; // Output: ⍞
Ruby:
char = "\u{235E}"
puts char # Output: ⍞
Rust:
let c = '\u{235E}';
println!("{}", c); // Output: ⍞
Go:
char := '\u235E'
fmt.Printf("%c\n", char) // Output: ⍞
CSS:
/* CSS content property */
.element::before {
content: "\00235E"; /* 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%8D%9E
MD5:
421747ac708db867dcd185dba8c77eb5
SHA1:
99dbc4057e279b1256715b1a043ddcc28ba76cae
Base64:
4o2e