C:
char c = '\u5127';
printf("%c\n", c); // Output: 儧
JavaScript:
const char = '\u5127';
console.log(char); // Output: 儧
Java:
char c = '\u5127';
System.out.println(c); // Output: 儧
JSON:
{"text": "\u5127"} // Value: 儧
Python:
char = '\u5127'
print(char) # Output: 儧
Perl:
my $char = "\x{5127}";
print $char; # Output: 儧
PHP:
$char = "\x{5127}";
echo $char; // Output: 儧
Ruby:
char = "\u{5127}"
puts char # Output: 儧
Rust:
let c = '\u{5127}';
println!("{}", c); // Output: 儧
Go:
char := '\u5127'
fmt.Printf("%c\n", char) // Output: 儧
CSS:
/* CSS content property */
.element::before {
content: "\005127"; /* 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=%E5%84%A7
MD5:
cd8c6fe160da70220ebb4c621e18d4a5
SHA1:
2afffd9b64b3e8e2590f203eecce771fed2736ba
Base64:
5YSn