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