C:
char c = '\u2042';
printf("%c\n", c); // Output: ⁂
JavaScript:
const char = '\u2042';
console.log(char); // Output: ⁂
Java:
char c = '\u2042';
System.out.println(c); // Output: ⁂
JSON:
{"text": "\u2042"} // Value: ⁂
Python:
char = '\u2042'
print(char) # Output: ⁂
Perl:
my $char = "\x{2042}";
print $char; # Output: ⁂
PHP:
$char = "\x{2042}";
echo $char; // Output: ⁂
Ruby:
char = "\u{2042}"
puts char # Output: ⁂
Rust:
let c = '\u{2042}';
println!("{}", c); // Output: ⁂
Go:
char := '\u2042'
fmt.Printf("%c\n", char) // Output: ⁂
CSS:
/* CSS content property */
.element::before {
content: "\002042"; /* 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%82
MD5:
32b02daad30ae4f981cb879d44b91d4d
SHA1:
89b666aa673322c314bf77896dde009f3df7c070
Base64:
4oGC