C:
char c = '\u6368';
printf("%c\n", c); // Output: 捨
JavaScript:
const char = '\u6368';
console.log(char); // Output: 捨
Java:
char c = '\u6368';
System.out.println(c); // Output: 捨
JSON:
{"text": "\u6368"} // Value: 捨
Python:
char = '\u6368'
print(char) # Output: 捨
Perl:
my $char = "\x{6368}";
print $char; # Output: 捨
PHP:
$char = "\x{6368}";
echo $char; // Output: 捨
Ruby:
char = "\u{6368}"
puts char # Output: 捨
Rust:
let c = '\u{6368}';
println!("{}", c); // Output: 捨
Go:
char := '\u6368'
fmt.Printf("%c\n", char) // Output: 捨
CSS:
/* CSS content property */
.element::before {
content: "\006368"; /* 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%8D%A8
MD5:
496cb9d54b30a93691fc2b6ac65be2a3
SHA1:
e6249fade7dbccefe51e25363974ad4b6974e0af
Base64:
5o2o