C:
char c = '\u9601';
printf("%c\n", c); // Output: 阁
JavaScript:
const char = '\u9601';
console.log(char); // Output: 阁
Java:
char c = '\u9601';
System.out.println(c); // Output: 阁
JSON:
{"text": "\u9601"} // Value: 阁
Python:
char = '\u9601'
print(char) # Output: 阁
Perl:
my $char = "\x{9601}";
print $char; # Output: 阁
PHP:
$char = "\x{9601}";
echo $char; // Output: 阁
Ruby:
char = "\u{9601}"
puts char # Output: 阁
Rust:
let c = '\u{9601}';
println!("{}", c); // Output: 阁
Go:
char := '\u9601'
fmt.Printf("%c\n", char) // Output: 阁
CSS:
/* CSS content property */
.element::before {
content: "\009601"; /* 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=%E9%98%81
MD5:
178fde7c82fb2864127e74a340666431
SHA1:
cf6c645d8fb3197c1810e8c4d5fed1b7402d549e
Base64:
6ZiB