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