C:
char c = '\u70C2';
printf("%c\n", c); // Output: 烂
JavaScript:
const char = '\u70C2';
console.log(char); // Output: 烂
Java:
char c = '\u70C2';
System.out.println(c); // Output: 烂
JSON:
{"text": "\u70C2"} // Value: 烂
Python:
char = '\u70C2'
print(char) # Output: 烂
Perl:
my $char = "\x{70C2}";
print $char; # Output: 烂
PHP:
$char = "\x{70C2}";
echo $char; // Output: 烂
Ruby:
char = "\u{70C2}"
puts char # Output: 烂
Rust:
let c = '\u{70C2}';
println!("{}", c); // Output: 烂
Go:
char := '\u70C2'
fmt.Printf("%c\n", char) // Output: 烂
CSS:
/* CSS content property */
.element::before {
content: "\0070C2"; /* 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=%E7%83%82
MD5:
f05c047d1f32c86ab2e2c40d4f63f6ae
SHA1:
43a57119521c1fbdd5d5de5bfa7118dde27c0e6d
Base64:
54OC