C:
char c = '\u6731';
printf("%c\n", c); // Output: 朱
JavaScript:
const char = '\u6731';
console.log(char); // Output: 朱
Java:
char c = '\u6731';
System.out.println(c); // Output: 朱
JSON:
{"text": "\u6731"} // Value: 朱
Python:
char = '\u6731'
print(char) # Output: 朱
Perl:
my $char = "\x{6731}";
print $char; # Output: 朱
PHP:
$char = "\x{6731}";
echo $char; // Output: 朱
Ruby:
char = "\u{6731}"
puts char # Output: 朱
Rust:
let c = '\u{6731}';
println!("{}", c); // Output: 朱
Go:
char := '\u6731'
fmt.Printf("%c\n", char) // Output: 朱
CSS:
/* CSS content property */
.element::before {
content: "\006731"; /* 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%B1
MD5:
de2bfb144a63146b22077a7a1d46d13b
SHA1:
8f4837f694d8bb69bee062c35775d3a5bd4b4929
Base64:
5pyx