C:
char c = '\u3003';
printf("%c\n", c); // Output: 〃
JavaScript:
const char = '\u3003';
console.log(char); // Output: 〃
Java:
char c = '\u3003';
System.out.println(c); // Output: 〃
JSON:
{"text": "\u3003"} // Value: 〃
Python:
char = '\u3003'
print(char) # Output: 〃
Perl:
my $char = "\x{3003}";
print $char; # Output: 〃
PHP:
$char = "\x{3003}";
echo $char; // Output: 〃
Ruby:
char = "\u{3003}"
puts char # Output: 〃
Rust:
let c = '\u{3003}';
println!("{}", c); // Output: 〃
Go:
char := '\u3003'
fmt.Printf("%c\n", char) // Output: 〃
CSS:
/* CSS content property */
.element::before {
content: "\003003"; /* 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%83
MD5:
242d3cb36c32c6ac584aa77ffc838b1a
SHA1:
d60fa7b95246dc7d532ca31b40301bc88e6b2e4e
Base64:
44CD