C:
char c = '\u5340';
printf("%c\n", c); // Output: 區
JavaScript:
const char = '\u5340';
console.log(char); // Output: 區
Java:
char c = '\u5340';
System.out.println(c); // Output: 區
JSON:
{"text": "\u5340"} // Value: 區
Python:
char = '\u5340'
print(char) # Output: 區
Perl:
my $char = "\x{5340}";
print $char; # Output: 區
PHP:
$char = "\x{5340}";
echo $char; // Output: 區
Ruby:
char = "\u{5340}"
puts char # Output: 區
Rust:
let c = '\u{5340}';
println!("{}", c); // Output: 區
Go:
char := '\u5340'
fmt.Printf("%c\n", char) // Output: 區
CSS:
/* CSS content property */
.element::before {
content: "\005340"; /* 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%8D%80
MD5:
b88941fa1090bd602f0352cef63a94e1
SHA1:
015dfe5ce1e68aab09084b0c6241822c72a2c548
Base64:
5Y2A