C:
char c = '\u67CC';
printf("%c\n", c); // Output: 柌
JavaScript:
const char = '\u67CC';
console.log(char); // Output: 柌
Java:
char c = '\u67CC';
System.out.println(c); // Output: 柌
JSON:
{"text": "\u67CC"} // Value: 柌
Python:
char = '\u67CC'
print(char) # Output: 柌
Perl:
my $char = "\x{67CC}";
print $char; # Output: 柌
PHP:
$char = "\x{67CC}";
echo $char; // Output: 柌
Ruby:
char = "\u{67CC}"
puts char # Output: 柌
Rust:
let c = '\u{67CC}';
println!("{}", c); // Output: 柌
Go:
char := '\u67CC'
fmt.Printf("%c\n", char) // Output: 柌
CSS:
/* CSS content property */
.element::before {
content: "\0067CC"; /* 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%9F%8C
MD5:
0ec2b41f57876298cb8842bd6dc3e60b
SHA1:
87cfc4cd0395b57e7f16e164a87375e029fe7939
Base64:
5p+M