C:
char c = '\u3028';
printf("%c\n", c); // Output: 〨
JavaScript:
const char = '\u3028';
console.log(char); // Output: 〨
Java:
char c = '\u3028';
System.out.println(c); // Output: 〨
JSON:
{"text": "\u3028"} // Value: 〨
Python:
char = '\u3028'
print(char) # Output: 〨
Perl:
my $char = "\x{3028}";
print $char; # Output: 〨
PHP:
$char = "\x{3028}";
echo $char; // Output: 〨
Ruby:
char = "\u{3028}"
puts char # Output: 〨
Rust:
let c = '\u{3028}';
println!("{}", c); // Output: 〨
Go:
char := '\u3028'
fmt.Printf("%c\n", char) // Output: 〨
CSS:
/* CSS content property */
.element::before {
content: "\003028"; /* 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%A8
MD5:
d6dd4d9b55a989e5b95daa2e8c3dcd0d
SHA1:
76a3f21c836c156ec2adf62e3b9fd5a5fce7d429
Base64:
44Co