C:
char c = '\u6414';
printf("%c\n", c); // Output: 搔
JavaScript:
const char = '\u6414';
console.log(char); // Output: 搔
Java:
char c = '\u6414';
System.out.println(c); // Output: 搔
JSON:
{"text": "\u6414"} // Value: 搔
Python:
char = '\u6414'
print(char) # Output: 搔
Perl:
my $char = "\x{6414}";
print $char; # Output: 搔
PHP:
$char = "\x{6414}";
echo $char; // Output: 搔
Ruby:
char = "\u{6414}"
puts char # Output: 搔
Rust:
let c = '\u{6414}';
println!("{}", c); // Output: 搔
Go:
char := '\u6414'
fmt.Printf("%c\n", char) // Output: 搔
CSS:
/* CSS content property */
.element::before {
content: "\006414"; /* 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%90%94
MD5:
333df7098fb976d0ffd36ea084577931
SHA1:
48ca683af98bc8d0b8ec0de5ff76961747725b6e
Base64:
5pCU