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