C:
char c = '\u9650';
printf("%c\n", c); // Output: 限
JavaScript:
const char = '\u9650';
console.log(char); // Output: 限
Java:
char c = '\u9650';
System.out.println(c); // Output: 限
JSON:
{"text": "\u9650"} // Value: 限
Python:
char = '\u9650'
print(char) # Output: 限
Perl:
my $char = "\x{9650}";
print $char; # Output: 限
PHP:
$char = "\x{9650}";
echo $char; // Output: 限
Ruby:
char = "\u{9650}"
puts char # Output: 限
Rust:
let c = '\u{9650}';
println!("{}", c); // Output: 限
Go:
char := '\u9650'
fmt.Printf("%c\n", char) // Output: 限
CSS:
/* CSS content property */
.element::before {
content: "\009650"; /* 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=%E9%99%90
MD5:
e0e27d3d942e856d8d9bca41a4c546cb
SHA1:
6f001cf2c54c5c7f2610bd0715a08df28ab1185f
Base64:
6ZmQ