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