C:
char c = '\u6908';
printf("%c\n", c); // Output: 椈
JavaScript:
const char = '\u6908';
console.log(char); // Output: 椈
Java:
char c = '\u6908';
System.out.println(c); // Output: 椈
JSON:
{"text": "\u6908"} // Value: 椈
Python:
char = '\u6908'
print(char) # Output: 椈
Perl:
my $char = "\x{6908}";
print $char; # Output: 椈
PHP:
$char = "\x{6908}";
echo $char; // Output: 椈
Ruby:
char = "\u{6908}"
puts char # Output: 椈
Rust:
let c = '\u{6908}';
println!("{}", c); // Output: 椈
Go:
char := '\u6908'
fmt.Printf("%c\n", char) // Output: 椈
CSS:
/* CSS content property */
.element::before {
content: "\006908"; /* 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%88
MD5:
47c7f8ee4d25b412fb60bf79763f27e0
SHA1:
01e653d30456ca4fdba647d526a40e737d239a5b
Base64:
5qSI