C:
char c = '\u3021';
printf("%c\n", c); // Output: 〡
JavaScript:
const char = '\u3021';
console.log(char); // Output: 〡
Java:
char c = '\u3021';
System.out.println(c); // Output: 〡
JSON:
{"text": "\u3021"} // Value: 〡
Python:
char = '\u3021'
print(char) # Output: 〡
Perl:
my $char = "\x{3021}";
print $char; # Output: 〡
PHP:
$char = "\x{3021}";
echo $char; // Output: 〡
Ruby:
char = "\u{3021}"
puts char # Output: 〡
Rust:
let c = '\u{3021}';
println!("{}", c); // Output: 〡
Go:
char := '\u3021'
fmt.Printf("%c\n", char) // Output: 〡
CSS:
/* CSS content property */
.element::before {
content: "\003021"; /* 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%A1
MD5:
618e032b82b91bcc1f6fca4d9f9920d9
SHA1:
5eedf961903a59ca2bd2dde442b506da000c5937
Base64:
44Ch