C:
char c = '\u68CD';
printf("%c\n", c); // Output: 棍
JavaScript:
const char = '\u68CD';
console.log(char); // Output: 棍
Java:
char c = '\u68CD';
System.out.println(c); // Output: 棍
JSON:
{"text": "\u68CD"} // Value: 棍
Python:
char = '\u68CD'
print(char) # Output: 棍
Perl:
my $char = "\x{68CD}";
print $char; # Output: 棍
PHP:
$char = "\x{68CD}";
echo $char; // Output: 棍
Ruby:
char = "\u{68CD}"
puts char # Output: 棍
Rust:
let c = '\u{68CD}';
println!("{}", c); // Output: 棍
Go:
char := '\u68CD'
fmt.Printf("%c\n", char) // Output: 棍
CSS:
/* CSS content property */
.element::before {
content: "\0068CD"; /* 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%A3%8D
MD5:
6c891d9b5f6fc213105aa6b7da54939f
SHA1:
1074a156bc4af9edd0be852defa20ff71f097abc
Base64:
5qON