C:
char c = '\u3002';
printf("%c\n", c); // Output: 。
JavaScript:
const char = '\u3002';
console.log(char); // Output: 。
Java:
char c = '\u3002';
System.out.println(c); // Output: 。
JSON:
{"text": "\u3002"} // Value: 。
Python:
char = '\u3002'
print(char) # Output: 。
Perl:
my $char = "\x{3002}";
print $char; # Output: 。
PHP:
$char = "\x{3002}";
echo $char; // Output: 。
Ruby:
char = "\u{3002}"
puts char # Output: 。
Rust:
let c = '\u{3002}';
println!("{}", c); // Output: 。
Go:
char := '\u3002'
fmt.Printf("%c\n", char) // Output: 。
CSS:
/* CSS content property */
.element::before {
content: "\003002"; /* 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%82
MD5:
81197c2d02b3a7c54cbd498ce55a73c8
SHA1:
f92669081d9acd976b27faed71c0469753ca3716
Base64:
44CC