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