C:
char c = '\u2443';
printf("%c\n", c); // Output: ⑃
JavaScript:
const char = '\u2443';
console.log(char); // Output: ⑃
Java:
char c = '\u2443';
System.out.println(c); // Output: ⑃
JSON:
{"text": "\u2443"} // Value: ⑃
Python:
char = '\u2443'
print(char) # Output: ⑃
Perl:
my $char = "\x{2443}";
print $char; # Output: ⑃
PHP:
$char = "\x{2443}";
echo $char; // Output: ⑃
Ruby:
char = "\u{2443}"
puts char # Output: ⑃
Rust:
let c = '\u{2443}';
println!("{}", c); // Output: ⑃
Go:
char := '\u2443'
fmt.Printf("%c\n", char) // Output: ⑃
CSS:
/* CSS content property */
.element::before {
content: "\002443"; /* 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%83
MD5:
c371cf8e9067d06e74522a93f042e430
SHA1:
fb8051d5e2f39edf3b7123d684e0005ce8ea91b8
Base64:
4pGD