C:
char c = '\u6596';
printf("%c\n", c); // Output: 斖
JavaScript:
const char = '\u6596';
console.log(char); // Output: 斖
Java:
char c = '\u6596';
System.out.println(c); // Output: 斖
JSON:
{"text": "\u6596"} // Value: 斖
Python:
char = '\u6596'
print(char) # Output: 斖
Perl:
my $char = "\x{6596}";
print $char; # Output: 斖
PHP:
$char = "\x{6596}";
echo $char; // Output: 斖
Ruby:
char = "\u{6596}"
puts char # Output: 斖
Rust:
let c = '\u{6596}';
println!("{}", c); // Output: 斖
Go:
char := '\u6596'
fmt.Printf("%c\n", char) // Output: 斖
CSS:
/* CSS content property */
.element::before {
content: "\006596"; /* 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%96
MD5:
72bd0a5dd99be6c4c7dc84d05a4d1681
SHA1:
1c06fd9ec6d20e0c419c518426b38d49c1fb8907
Base64:
5paW