C:
char c = '\u3033';
printf("%c\n", c); // Output: 〳
JavaScript:
const char = '\u3033';
console.log(char); // Output: 〳
Java:
char c = '\u3033';
System.out.println(c); // Output: 〳
JSON:
{"text": "\u3033"} // Value: 〳
Python:
char = '\u3033'
print(char) # Output: 〳
Perl:
my $char = "\x{3033}";
print $char; # Output: 〳
PHP:
$char = "\x{3033}";
echo $char; // Output: 〳
Ruby:
char = "\u{3033}"
puts char # Output: 〳
Rust:
let c = '\u{3033}';
println!("{}", c); // Output: 〳
Go:
char := '\u3033'
fmt.Printf("%c\n", char) // Output: 〳
CSS:
/* CSS content property */
.element::before {
content: "\003033"; /* 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%B3
MD5:
40336c95995e8a6fd09eb18a594d6f90
SHA1:
492da1135126283268c355395ad84de997d73f78
Base64:
44Cz