C:
char c = '\u5883';
printf("%c\n", c); // Output: 境
JavaScript:
const char = '\u5883';
console.log(char); // Output: 境
Java:
char c = '\u5883';
System.out.println(c); // Output: 境
JSON:
{"text": "\u5883"} // Value: 境
Python:
char = '\u5883'
print(char) # Output: 境
Perl:
my $char = "\x{5883}";
print $char; # Output: 境
PHP:
$char = "\x{5883}";
echo $char; // Output: 境
Ruby:
char = "\u{5883}"
puts char # Output: 境
Rust:
let c = '\u{5883}';
println!("{}", c); // Output: 境
Go:
char := '\u5883'
fmt.Printf("%c\n", char) // Output: 境
CSS:
/* CSS content property */
.element::before {
content: "\005883"; /* 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%A2%83
MD5:
e8da851469c77e6c323723b02bebb7cb
SHA1:
8b008e3b6e867aa0eebaa20394dbde075de9d7ec
Base64:
5aKD