C:
char c = '\u5063';
printf("%c\n", c); // Output: 偣
JavaScript:
const char = '\u5063';
console.log(char); // Output: 偣
Java:
char c = '\u5063';
System.out.println(c); // Output: 偣
JSON:
{"text": "\u5063"} // Value: 偣
Python:
char = '\u5063'
print(char) # Output: 偣
Perl:
my $char = "\x{5063}";
print $char; # Output: 偣
PHP:
$char = "\x{5063}";
echo $char; // Output: 偣
Ruby:
char = "\u{5063}"
puts char # Output: 偣
Rust:
let c = '\u{5063}';
println!("{}", c); // Output: 偣
Go:
char := '\u5063'
fmt.Printf("%c\n", char) // Output: 偣
CSS:
/* CSS content property */
.element::before {
content: "\005063"; /* 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%81%A3
MD5:
5b1605a0e9d16c4adc2a0be797c27659
SHA1:
0507c9110c8c1a5d716dfccf25a8bff7ade9cea4
Base64:
5YGj