C:
char c = '\u6733';
printf("%c\n", c); // Output: 朳
JavaScript:
const char = '\u6733';
console.log(char); // Output: 朳
Java:
char c = '\u6733';
System.out.println(c); // Output: 朳
JSON:
{"text": "\u6733"} // Value: 朳
Python:
char = '\u6733'
print(char) # Output: 朳
Perl:
my $char = "\x{6733}";
print $char; # Output: 朳
PHP:
$char = "\x{6733}";
echo $char; // Output: 朳
Ruby:
char = "\u{6733}"
puts char # Output: 朳
Rust:
let c = '\u{6733}';
println!("{}", c); // Output: 朳
Go:
char := '\u6733'
fmt.Printf("%c\n", char) // Output: 朳
CSS:
/* CSS content property */
.element::before {
content: "\006733"; /* 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=%E6%9C%B3
MD5:
528a52d2b0b9fbfb8543ed4733c04d09
SHA1:
e592df06feb7557e1567d96ab0e539ee908612b6
Base64:
5pyz