C:
char c = '\u7D12';
printf("%c\n", c); // Output: 紒
JavaScript:
const char = '\u7D12';
console.log(char); // Output: 紒
Java:
char c = '\u7D12';
System.out.println(c); // Output: 紒
JSON:
{"text": "\u7D12"} // Value: 紒
Python:
char = '\u7D12'
print(char) # Output: 紒
Perl:
my $char = "\x{7D12}";
print $char; # Output: 紒
PHP:
$char = "\x{7D12}";
echo $char; // Output: 紒
Ruby:
char = "\u{7D12}"
puts char # Output: 紒
Rust:
let c = '\u{7D12}';
println!("{}", c); // Output: 紒
Go:
char := '\u7D12'
fmt.Printf("%c\n", char) // Output: 紒
CSS:
/* CSS content property */
.element::before {
content: "\007D12"; /* 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=%E7%B4%92
MD5:
f1569ce29f69bf3c68f2e7c49ff3ce33
SHA1:
845fd76cec2743b56b304c087747321d0a226036
Base64:
57SS