C:
char c = '\u3023';
printf("%c\n", c); // Output: 〣
JavaScript:
const char = '\u3023';
console.log(char); // Output: 〣
Java:
char c = '\u3023';
System.out.println(c); // Output: 〣
JSON:
{"text": "\u3023"} // Value: 〣
Python:
char = '\u3023'
print(char) # Output: 〣
Perl:
my $char = "\x{3023}";
print $char; # Output: 〣
PHP:
$char = "\x{3023}";
echo $char; // Output: 〣
Ruby:
char = "\u{3023}"
puts char # Output: 〣
Rust:
let c = '\u{3023}';
println!("{}", c); // Output: 〣
Go:
char := '\u3023'
fmt.Printf("%c\n", char) // Output: 〣
CSS:
/* CSS content property */
.element::before {
content: "\003023"; /* 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%A3
MD5:
8a827af1aaefc4acfeb9af0657bfb85e
SHA1:
5f5130d1c92dcc63690151f7aef0d445c6974533
Base64:
44Cj