C:
char c = '\u3001';
printf("%c\n", c); // Output: 、
JavaScript:
const char = '\u3001';
console.log(char); // Output: 、
Java:
char c = '\u3001';
System.out.println(c); // Output: 、
JSON:
{"text": "\u3001"} // Value: 、
Python:
char = '\u3001'
print(char) # Output: 、
Perl:
my $char = "\x{3001}";
print $char; # Output: 、
PHP:
$char = "\x{3001}";
echo $char; // Output: 、
Ruby:
char = "\u{3001}"
puts char # Output: 、
Rust:
let c = '\u{3001}';
println!("{}", c); // Output: 、
Go:
char := '\u3001'
fmt.Printf("%c\n", char) // Output: 、
CSS:
/* CSS content property */
.element::before {
content: "\003001"; /* 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%81
MD5:
b505660a97c0ddf7d7209d22bc498ed1
SHA1:
611e057fbc79e7c201215ba87b43c4d78eb63dab
Base64:
44CB