C:
char c = '\u6932';
printf("%c\n", c); // Output: 椲
JavaScript:
const char = '\u6932';
console.log(char); // Output: 椲
Java:
char c = '\u6932';
System.out.println(c); // Output: 椲
JSON:
{"text": "\u6932"} // Value: 椲
Python:
char = '\u6932'
print(char) # Output: 椲
Perl:
my $char = "\x{6932}";
print $char; # Output: 椲
PHP:
$char = "\x{6932}";
echo $char; // Output: 椲
Ruby:
char = "\u{6932}"
puts char # Output: 椲
Rust:
let c = '\u{6932}';
println!("{}", c); // Output: 椲
Go:
char := '\u6932'
fmt.Printf("%c\n", char) // Output: 椲
CSS:
/* CSS content property */
.element::before {
content: "\006932"; /* 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%B2
MD5:
07e38563062f3c7c9723b324c6752277
SHA1:
5f5e608d23f9510bc83d26c5cef60455711cb236
Base64:
5qSy