C:
char c = '\u6928';
printf("%c\n", c); // Output: 椨
JavaScript:
const char = '\u6928';
console.log(char); // Output: 椨
Java:
char c = '\u6928';
System.out.println(c); // Output: 椨
JSON:
{"text": "\u6928"} // Value: 椨
Python:
char = '\u6928'
print(char) # Output: 椨
Perl:
my $char = "\x{6928}";
print $char; # Output: 椨
PHP:
$char = "\x{6928}";
echo $char; // Output: 椨
Ruby:
char = "\u{6928}"
puts char # Output: 椨
Rust:
let c = '\u{6928}';
println!("{}", c); // Output: 椨
Go:
char := '\u6928'
fmt.Printf("%c\n", char) // Output: 椨
CSS:
/* CSS content property */
.element::before {
content: "\006928"; /* 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%A4%A8
MD5:
121a79da2709c526ec86d5dd056a27f7
SHA1:
4b7b954d7388bfccef9cd06b0ed7f3f48b0ccde4
Base64:
5qSo