C:
char c = '\u3014';
printf("%c\n", c); // Output: 〔
JavaScript:
const char = '\u3014';
console.log(char); // Output: 〔
Java:
char c = '\u3014';
System.out.println(c); // Output: 〔
JSON:
{"text": "\u3014"} // Value: 〔
Python:
char = '\u3014'
print(char) # Output: 〔
Perl:
my $char = "\x{3014}";
print $char; # Output: 〔
PHP:
$char = "\x{3014}";
echo $char; // Output: 〔
Ruby:
char = "\u{3014}"
puts char # Output: 〔
Rust:
let c = '\u{3014}';
println!("{}", c); // Output: 〔
Go:
char := '\u3014'
fmt.Printf("%c\n", char) // Output: 〔
CSS:
/* CSS content property */
.element::before {
content: "\003014"; /* 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%94
MD5:
f27ede5f15772645475739c878fc8a80
SHA1:
83d712eed40e837544b5ab8aa94eb3aef22383ca
Base64:
44CU