C:
char c = '\u6903';
printf("%c\n", c); // Output: 椃
JavaScript:
const char = '\u6903';
console.log(char); // Output: 椃
Java:
char c = '\u6903';
System.out.println(c); // Output: 椃
JSON:
{"text": "\u6903"} // Value: 椃
Python:
char = '\u6903'
print(char) # Output: 椃
Perl:
my $char = "\x{6903}";
print $char; # Output: 椃
PHP:
$char = "\x{6903}";
echo $char; // Output: 椃
Ruby:
char = "\u{6903}"
puts char # Output: 椃
Rust:
let c = '\u{6903}';
println!("{}", c); // Output: 椃
Go:
char := '\u6903'
fmt.Printf("%c\n", char) // Output: 椃
CSS:
/* CSS content property */
.element::before {
content: "\006903"; /* 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%83
MD5:
6be56944eadd90abcb5835a22396b03b
SHA1:
1c95bb7c5514c70177077978ab452bf492335e13
Base64:
5qSD