C:
char c = '\u3010';
printf("%c\n", c); // Output: 【
JavaScript:
const char = '\u3010';
console.log(char); // Output: 【
Java:
char c = '\u3010';
System.out.println(c); // Output: 【
JSON:
{"text": "\u3010"} // Value: 【
Python:
char = '\u3010'
print(char) # Output: 【
Perl:
my $char = "\x{3010}";
print $char; # Output: 【
PHP:
$char = "\x{3010}";
echo $char; // Output: 【
Ruby:
char = "\u{3010}"
puts char # Output: 【
Rust:
let c = '\u{3010}';
println!("{}", c); // Output: 【
Go:
char := '\u3010'
fmt.Printf("%c\n", char) // Output: 【
CSS:
/* CSS content property */
.element::before {
content: "\003010"; /* 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%90
MD5:
0341329b1dfdf11541d2375d20537a22
SHA1:
c9157cedda80ae56112b069bc9be8c3de3f0da43
Base64:
44CQ