C:
char c = '\u2442';
printf("%c\n", c); // Output: ⑂
JavaScript:
const char = '\u2442';
console.log(char); // Output: ⑂
Java:
char c = '\u2442';
System.out.println(c); // Output: ⑂
JSON:
{"text": "\u2442"} // Value: ⑂
Python:
char = '\u2442'
print(char) # Output: ⑂
Perl:
my $char = "\x{2442}";
print $char; # Output: ⑂
PHP:
$char = "\x{2442}";
echo $char; // Output: ⑂
Ruby:
char = "\u{2442}"
puts char # Output: ⑂
Rust:
let c = '\u{2442}';
println!("{}", c); // Output: ⑂
Go:
char := '\u2442'
fmt.Printf("%c\n", char) // Output: ⑂
CSS:
/* CSS content property */
.element::before {
content: "\002442"; /* 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%91%82
MD5:
fe2f63ef8fadc2a0c8adb2859cafc8cf
SHA1:
21928950a8d62753bd25f835e12c9e995267d259
Base64:
4pGC