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