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