C:
char c = '\u8853';
printf("%c\n", c); // Output: 術
JavaScript:
const char = '\u8853';
console.log(char); // Output: 術
Java:
char c = '\u8853';
System.out.println(c); // Output: 術
JSON:
{"text": "\u8853"} // Value: 術
Python:
char = '\u8853'
print(char) # Output: 術
Perl:
my $char = "\x{8853}";
print $char; # Output: 術
PHP:
$char = "\x{8853}";
echo $char; // Output: 術
Ruby:
char = "\u{8853}"
puts char # Output: 術
Rust:
let c = '\u{8853}';
println!("{}", c); // Output: 術
Go:
char := '\u8853'
fmt.Printf("%c\n", char) // Output: 術
CSS:
/* CSS content property */
.element::before {
content: "\008853"; /* 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=%E8%A1%93
MD5:
8dfa3988b82a20d8f68a307601ebc54b
SHA1:
3f251878e7ca31215069bc3d6ebb7c70c088f0d1
Base64:
6KGT