C:
char c = '\u3032';
printf("%c\n", c); // Output: 〲
JavaScript:
const char = '\u3032';
console.log(char); // Output: 〲
Java:
char c = '\u3032';
System.out.println(c); // Output: 〲
JSON:
{"text": "\u3032"} // Value: 〲
Python:
char = '\u3032'
print(char) # Output: 〲
Perl:
my $char = "\x{3032}";
print $char; # Output: 〲
PHP:
$char = "\x{3032}";
echo $char; // Output: 〲
Ruby:
char = "\u{3032}"
puts char # Output: 〲
Rust:
let c = '\u{3032}';
println!("{}", c); // Output: 〲
Go:
char := '\u3032'
fmt.Printf("%c\n", char) // Output: 〲
CSS:
/* CSS content property */
.element::before {
content: "\003032"; /* 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%B2
MD5:
b5c98a907f02130b60e04a3e4424ce38
SHA1:
c30d33efbe4f2d92bb2ef8cd9bcb2f931a592373
Base64:
44Cy