C:
char c = '\u5197';
printf("%c\n", c); // Output: 冗
JavaScript:
const char = '\u5197';
console.log(char); // Output: 冗
Java:
char c = '\u5197';
System.out.println(c); // Output: 冗
JSON:
{"text": "\u5197"} // Value: 冗
Python:
char = '\u5197'
print(char) # Output: 冗
Perl:
my $char = "\x{5197}";
print $char; # Output: 冗
PHP:
$char = "\x{5197}";
echo $char; // Output: 冗
Ruby:
char = "\u{5197}"
puts char # Output: 冗
Rust:
let c = '\u{5197}';
println!("{}", c); // Output: 冗
Go:
char := '\u5197'
fmt.Printf("%c\n", char) // Output: 冗
CSS:
/* CSS content property */
.element::before {
content: "\005197"; /* 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=%E5%86%97
MD5:
a6e33febb72187c94e60c5f08f3455a0
SHA1:
415d8e2c4f222fc7c879e76246e18f30fba24c11
Base64:
5YaX