C:
char c = '\u3022';
printf("%c\n", c); // Output: 〢
JavaScript:
const char = '\u3022';
console.log(char); // Output: 〢
Java:
char c = '\u3022';
System.out.println(c); // Output: 〢
JSON:
{"text": "\u3022"} // Value: 〢
Python:
char = '\u3022'
print(char) # Output: 〢
Perl:
my $char = "\x{3022}";
print $char; # Output: 〢
PHP:
$char = "\x{3022}";
echo $char; // Output: 〢
Ruby:
char = "\u{3022}"
puts char # Output: 〢
Rust:
let c = '\u{3022}';
println!("{}", c); // Output: 〢
Go:
char := '\u3022'
fmt.Printf("%c\n", char) // Output: 〢
CSS:
/* CSS content property */
.element::before {
content: "\003022"; /* 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=%E3%80%A2
MD5:
ef8390c7f5f2ec6e114325fe79c18b82
SHA1:
c2f6c4e583506b8bb74c3a577aefb4a15dec1f0b
Base64:
44Ci