C:
char c = '\u6902';
printf("%c\n", c); // Output: 椂
JavaScript:
const char = '\u6902';
console.log(char); // Output: 椂
Java:
char c = '\u6902';
System.out.println(c); // Output: 椂
JSON:
{"text": "\u6902"} // Value: 椂
Python:
char = '\u6902'
print(char) # Output: 椂
Perl:
my $char = "\x{6902}";
print $char; # Output: 椂
PHP:
$char = "\x{6902}";
echo $char; // Output: 椂
Ruby:
char = "\u{6902}"
puts char # Output: 椂
Rust:
let c = '\u{6902}';
println!("{}", c); // Output: 椂
Go:
char := '\u6902'
fmt.Printf("%c\n", char) // Output: 椂
CSS:
/* CSS content property */
.element::before {
content: "\006902"; /* 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%82
MD5:
10ec09e7912a29105b0bb89ee45d631a
SHA1:
a9328ac078ade70cbf24407befb7cc3a3b099117
Base64:
5qSC