C:
char c = '\u3011';
printf("%c\n", c); // Output: 】
JavaScript:
const char = '\u3011';
console.log(char); // Output: 】
Java:
char c = '\u3011';
System.out.println(c); // Output: 】
JSON:
{"text": "\u3011"} // Value: 】
Python:
char = '\u3011'
print(char) # Output: 】
Perl:
my $char = "\x{3011}";
print $char; # Output: 】
PHP:
$char = "\x{3011}";
echo $char; // Output: 】
Ruby:
char = "\u{3011}"
puts char # Output: 】
Rust:
let c = '\u{3011}';
println!("{}", c); // Output: 】
Go:
char := '\u3011'
fmt.Printf("%c\n", char) // Output: 】
CSS:
/* CSS content property */
.element::before {
content: "\003011"; /* 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%91
MD5:
5942e7ebd051339cf5f314bf392f0d52
SHA1:
f3d86aa04cad7fc7ff54b12b2417b979e0a366b2
Base64:
44CR