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