C:
char c = '\u5195';
printf("%c\n", c); // Output: 冕
JavaScript:
const char = '\u5195';
console.log(char); // Output: 冕
Java:
char c = '\u5195';
System.out.println(c); // Output: 冕
JSON:
{"text": "\u5195"} // Value: 冕
Python:
char = '\u5195'
print(char) # Output: 冕
Perl:
my $char = "\x{5195}";
print $char; # Output: 冕
PHP:
$char = "\x{5195}";
echo $char; // Output: 冕
Ruby:
char = "\u{5195}"
puts char # Output: 冕
Rust:
let c = '\u{5195}';
println!("{}", c); // Output: 冕
Go:
char := '\u5195'
fmt.Printf("%c\n", char) // Output: 冕
CSS:
/* CSS content property */
.element::before {
content: "\005195"; /* 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%86%95
MD5:
fa95e1aaa4b94f1b24014fd2625e4ba1
SHA1:
38dfdb113dbaf25a2b57a05fe34b687183cd3fa5
Base64:
5YaV