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