C:
char c = '\u5433';
printf("%c\n", c); // Output: 吳
JavaScript:
const char = '\u5433';
console.log(char); // Output: 吳
Java:
char c = '\u5433';
System.out.println(c); // Output: 吳
JSON:
{"text": "\u5433"} // Value: 吳
Python:
char = '\u5433'
print(char) # Output: 吳
Perl:
my $char = "\x{5433}";
print $char; # Output: 吳
PHP:
$char = "\x{5433}";
echo $char; // Output: 吳
Ruby:
char = "\u{5433}"
puts char # Output: 吳
Rust:
let c = '\u{5433}';
println!("{}", c); // Output: 吳
Go:
char := '\u5433'
fmt.Printf("%c\n", char) // Output: 吳
CSS:
/* CSS content property */
.element::before {
content: "\005433"; /* 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%90%B3
MD5:
ef57c9f9f5e246fa380aea2d467fad64
SHA1:
8a0b7c643d9fd504be758394bc9d4c7f9497bfcd
Base64:
5ZCz