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