C:
char c = '\u6483';
printf("%c\n", c); // Output: 撃
JavaScript:
const char = '\u6483';
console.log(char); // Output: 撃
Java:
char c = '\u6483';
System.out.println(c); // Output: 撃
JSON:
{"text": "\u6483"} // Value: 撃
Python:
char = '\u6483'
print(char) # Output: 撃
Perl:
my $char = "\x{6483}";
print $char; # Output: 撃
PHP:
$char = "\x{6483}";
echo $char; // Output: 撃
Ruby:
char = "\u{6483}"
puts char # Output: 撃
Rust:
let c = '\u{6483}';
println!("{}", c); // Output: 撃
Go:
char := '\u6483'
fmt.Printf("%c\n", char) // Output: 撃
CSS:
/* CSS content property */
.element::before {
content: "\006483"; /* 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%92%83
MD5:
fbfa74fda3144ffb7481eeac5edfb55f
SHA1:
0e461b551b95821df8359683688229918b4a4b00
Base64:
5pKD