C:
char c = '\u8083';
printf("%c\n", c); // Output: 肃
JavaScript:
const char = '\u8083';
console.log(char); // Output: 肃
Java:
char c = '\u8083';
System.out.println(c); // Output: 肃
JSON:
{"text": "\u8083"} // Value: 肃
Python:
char = '\u8083'
print(char) # Output: 肃
Perl:
my $char = "\x{8083}";
print $char; # Output: 肃
PHP:
$char = "\x{8083}";
echo $char; // Output: 肃
Ruby:
char = "\u{8083}"
puts char # Output: 肃
Rust:
let c = '\u{8083}';
println!("{}", c); // Output: 肃
Go:
char := '\u8083'
fmt.Printf("%c\n", char) // Output: 肃
CSS:
/* CSS content property */
.element::before {
content: "\008083"; /* 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=%E8%82%83
MD5:
b517aa6c7c732afa516f2b4a40a0b403
SHA1:
0d07013e6501eee03e77e7b4049a38942010ffe2
Base64:
6IKD