C:
char c = '\u6586';
printf("%c\n", c); // Output: 斆
JavaScript:
const char = '\u6586';
console.log(char); // Output: 斆
Java:
char c = '\u6586';
System.out.println(c); // Output: 斆
JSON:
{"text": "\u6586"} // Value: 斆
Python:
char = '\u6586'
print(char) # Output: 斆
Perl:
my $char = "\x{6586}";
print $char; # Output: 斆
PHP:
$char = "\x{6586}";
echo $char; // Output: 斆
Ruby:
char = "\u{6586}"
puts char # Output: 斆
Rust:
let c = '\u{6586}';
println!("{}", c); // Output: 斆
Go:
char := '\u6586'
fmt.Printf("%c\n", char) // Output: 斆
CSS:
/* CSS content property */
.element::before {
content: "\006586"; /* 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%86
MD5:
a166146795f78df7b0e3f71fd3608e33
SHA1:
187f1da891a909edb22f688445cb0d5d0d6da241
Base64:
5paG