C:
char c = '\u2055';
printf("%c\n", c); // Output: ⁕
JavaScript:
const char = '\u2055';
console.log(char); // Output: ⁕
Java:
char c = '\u2055';
System.out.println(c); // Output: ⁕
JSON:
{"text": "\u2055"} // Value: ⁕
Python:
char = '\u2055'
print(char) # Output: ⁕
Perl:
my $char = "\x{2055}";
print $char; # Output: ⁕
PHP:
$char = "\x{2055}";
echo $char; // Output: ⁕
Ruby:
char = "\u{2055}"
puts char # Output: ⁕
Rust:
let c = '\u{2055}';
println!("{}", c); // Output: ⁕
Go:
char := '\u2055'
fmt.Printf("%c\n", char) // Output: ⁕
CSS:
/* CSS content property */
.element::before {
content: "\002055"; /* 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%81%95
MD5:
a920e14f5af127005a6b9e466b0357b1
SHA1:
4aadbb9faeca410554ce60dbd337af2b1fd6483f
Base64:
4oGV