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