C:
char c = '\u3016';
printf("%c\n", c); // Output: 〖
JavaScript:
const char = '\u3016';
console.log(char); // Output: 〖
Java:
char c = '\u3016';
System.out.println(c); // Output: 〖
JSON:
{"text": "\u3016"} // Value: 〖
Python:
char = '\u3016'
print(char) # Output: 〖
Perl:
my $char = "\x{3016}";
print $char; # Output: 〖
PHP:
$char = "\x{3016}";
echo $char; // Output: 〖
Ruby:
char = "\u{3016}"
puts char # Output: 〖
Rust:
let c = '\u{3016}';
println!("{}", c); // Output: 〖
Go:
char := '\u3016'
fmt.Printf("%c\n", char) // Output: 〖
CSS:
/* CSS content property */
.element::before {
content: "\003016"; /* 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%96
MD5:
763d5117f6bbb0acba1dc46978c12312
SHA1:
e0eef2ff6ae77a2ec9011d4de0b41192826fb30a
Base64:
44CW