C:
char c = '\u6B8B';
printf("%c\n", c); // Output: 残
JavaScript:
const char = '\u6B8B';
console.log(char); // Output: 残
Java:
char c = '\u6B8B';
System.out.println(c); // Output: 残
JSON:
{"text": "\u6B8B"} // Value: 残
Python:
char = '\u6B8B'
print(char) # Output: 残
Perl:
my $char = "\x{6B8B}";
print $char; # Output: 残
PHP:
$char = "\x{6B8B}";
echo $char; // Output: 残
Ruby:
char = "\u{6B8B}"
puts char # Output: 残
Rust:
let c = '\u{6B8B}';
println!("{}", c); // Output: 残
Go:
char := '\u6B8B'
fmt.Printf("%c\n", char) // Output: 残
CSS:
/* CSS content property */
.element::before {
content: "\006B8B"; /* 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%AE%8B
MD5:
d5aaf5f437ff7b276ca78779bdddfa0e
SHA1:
b6b64a431723c596240b811a0ce03e6e016120e2
Base64:
5q6L