C:
char c = '\u302F';
printf("%c\n", c); // Output: 〯
JavaScript:
const char = '\u302F';
console.log(char); // Output: 〯
Java:
char c = '\u302F';
System.out.println(c); // Output: 〯
JSON:
{"text": "\u302F"} // Value: 〯
Python:
char = '\u302F'
print(char) # Output: 〯
Perl:
my $char = "\x{302F}";
print $char; # Output: 〯
PHP:
$char = "\x{302F}";
echo $char; // Output: 〯
Ruby:
char = "\u{302F}"
puts char # Output: 〯
Rust:
let c = '\u{302F}';
println!("{}", c); // Output: 〯
Go:
char := '\u302F'
fmt.Printf("%c\n", char) // Output: 〯
CSS:
/* CSS content property */
.element::before {
content: "\00302F"; /* 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%AF
MD5:
38753105c2de7025e741357234152de3
SHA1:
b05dd18c1f1994ad6ead013a4421f303902f7e40
Base64:
44Cv