C:
char c = '\u6582';
printf("%c\n", c); // Output: 斂
JavaScript:
const char = '\u6582';
console.log(char); // Output: 斂
Java:
char c = '\u6582';
System.out.println(c); // Output: 斂
JSON:
{"text": "\u6582"} // Value: 斂
Python:
char = '\u6582'
print(char) # Output: 斂
Perl:
my $char = "\x{6582}";
print $char; # Output: 斂
PHP:
$char = "\x{6582}";
echo $char; // Output: 斂
Ruby:
char = "\u{6582}"
puts char # Output: 斂
Rust:
let c = '\u{6582}';
println!("{}", c); // Output: 斂
Go:
char := '\u6582'
fmt.Printf("%c\n", char) // Output: 斂
CSS:
/* CSS content property */
.element::before {
content: "\006582"; /* 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%82
MD5:
fafe362f80402c8778fba7d909d7d87e
SHA1:
434f05acf6811c3d2f69cd6eac8a76d2b0a77293
Base64:
5paC