C:
char c = '\u3015';
printf("%c\n", c); // Output: 〕
JavaScript:
const char = '\u3015';
console.log(char); // Output: 〕
Java:
char c = '\u3015';
System.out.println(c); // Output: 〕
JSON:
{"text": "\u3015"} // Value: 〕
Python:
char = '\u3015'
print(char) # Output: 〕
Perl:
my $char = "\x{3015}";
print $char; # Output: 〕
PHP:
$char = "\x{3015}";
echo $char; // Output: 〕
Ruby:
char = "\u{3015}"
puts char # Output: 〕
Rust:
let c = '\u{3015}';
println!("{}", c); // Output: 〕
Go:
char := '\u3015'
fmt.Printf("%c\n", char) // Output: 〕
CSS:
/* CSS content property */
.element::before {
content: "\003015"; /* 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%95
MD5:
fc9caa77f78c6ee8c990cc6781618f3c
SHA1:
23cd8cef3f57a60acde45e20991fb30e51155b66
Base64:
44CV