C:
char c = '\u6588';
printf("%c\n", c); // Output: 斈
JavaScript:
const char = '\u6588';
console.log(char); // Output: 斈
Java:
char c = '\u6588';
System.out.println(c); // Output: 斈
JSON:
{"text": "\u6588"} // Value: 斈
Python:
char = '\u6588'
print(char) # Output: 斈
Perl:
my $char = "\x{6588}";
print $char; # Output: 斈
PHP:
$char = "\x{6588}";
echo $char; // Output: 斈
Ruby:
char = "\u{6588}"
puts char # Output: 斈
Rust:
let c = '\u{6588}';
println!("{}", c); // Output: 斈
Go:
char := '\u6588'
fmt.Printf("%c\n", char) // Output: 斈
CSS:
/* CSS content property */
.element::before {
content: "\006588"; /* 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%88
MD5:
5413d008e13de7574d560b5568781862
SHA1:
b36000f6c3b59b9a5d538378529960ad57efabad
Base64:
5paI