C:
char c = '\u6598';
printf("%c\n", c); // Output: 斘
JavaScript:
const char = '\u6598';
console.log(char); // Output: 斘
Java:
char c = '\u6598';
System.out.println(c); // Output: 斘
JSON:
{"text": "\u6598"} // Value: 斘
Python:
char = '\u6598'
print(char) # Output: 斘
Perl:
my $char = "\x{6598}";
print $char; # Output: 斘
PHP:
$char = "\x{6598}";
echo $char; // Output: 斘
Ruby:
char = "\u{6598}"
puts char # Output: 斘
Rust:
let c = '\u{6598}';
println!("{}", c); // Output: 斘
Go:
char := '\u6598'
fmt.Printf("%c\n", char) // Output: 斘
CSS:
/* CSS content property */
.element::before {
content: "\006598"; /* 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%96%98
MD5:
1897f74546337d2b9d4ee52ecf4e61f3
SHA1:
27124f9ed2405c692b5fc052919d71cc248fe892
Base64:
5paY