C:
char c = '\u6732';
printf("%c\n", c); // Output: 朲
JavaScript:
const char = '\u6732';
console.log(char); // Output: 朲
Java:
char c = '\u6732';
System.out.println(c); // Output: 朲
JSON:
{"text": "\u6732"} // Value: 朲
Python:
char = '\u6732'
print(char) # Output: 朲
Perl:
my $char = "\x{6732}";
print $char; # Output: 朲
PHP:
$char = "\x{6732}";
echo $char; // Output: 朲
Ruby:
char = "\u{6732}"
puts char # Output: 朲
Rust:
let c = '\u{6732}';
println!("{}", c); // Output: 朲
Go:
char := '\u6732'
fmt.Printf("%c\n", char) // Output: 朲
CSS:
/* CSS content property */
.element::before {
content: "\006732"; /* 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%B2
MD5:
9931143b350cdf51c4809acffbc9c4b7
SHA1:
f3cde57fca787e5c0fa99e6b66797dc891ebf701
Base64:
5pyy