C:
char c = '\u5027';
printf("%c\n", c); // Output: 倧
JavaScript:
const char = '\u5027';
console.log(char); // Output: 倧
Java:
char c = '\u5027';
System.out.println(c); // Output: 倧
JSON:
{"text": "\u5027"} // Value: 倧
Python:
char = '\u5027'
print(char) # Output: 倧
Perl:
my $char = "\x{5027}";
print $char; # Output: 倧
PHP:
$char = "\x{5027}";
echo $char; // Output: 倧
Ruby:
char = "\u{5027}"
puts char # Output: 倧
Rust:
let c = '\u{5027}';
println!("{}", c); // Output: 倧
Go:
char := '\u5027'
fmt.Printf("%c\n", char) // Output: 倧
CSS:
/* CSS content property */
.element::before {
content: "\005027"; /* 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%80%A7
MD5:
0bf369e9c11d756d00d1aa1c4df5d6c2
SHA1:
664c80adab0f8d16f3e41cd1da1c86ea84efd1e0
Base64:
5YCn