C:
char c = '\u3027';
printf("%c\n", c); // Output: 〧
JavaScript:
const char = '\u3027';
console.log(char); // Output: 〧
Java:
char c = '\u3027';
System.out.println(c); // Output: 〧
JSON:
{"text": "\u3027"} // Value: 〧
Python:
char = '\u3027'
print(char) # Output: 〧
Perl:
my $char = "\x{3027}";
print $char; # Output: 〧
PHP:
$char = "\x{3027}";
echo $char; // Output: 〧
Ruby:
char = "\u{3027}"
puts char # Output: 〧
Rust:
let c = '\u{3027}';
println!("{}", c); // Output: 〧
Go:
char := '\u3027'
fmt.Printf("%c\n", char) // Output: 〧
CSS:
/* CSS content property */
.element::before {
content: "\003027"; /* 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%A7
MD5:
c6a4e10be8a2b24de8c08204fef23ded
SHA1:
47b49d6704b8f542b5e23071f65cdcfe959800cf
Base64:
44Cn