C:
char c = '\u955C';
printf("%c\n", c); // Output: 镜
JavaScript:
const char = '\u955C';
console.log(char); // Output: 镜
Java:
char c = '\u955C';
System.out.println(c); // Output: 镜
JSON:
{"text": "\u955C"} // Value: 镜
Python:
char = '\u955C'
print(char) # Output: 镜
Perl:
my $char = "\x{955C}";
print $char; # Output: 镜
PHP:
$char = "\x{955C}";
echo $char; // Output: 镜
Ruby:
char = "\u{955C}"
puts char # Output: 镜
Rust:
let c = '\u{955C}';
println!("{}", c); // Output: 镜
Go:
char := '\u955C'
fmt.Printf("%c\n", char) // Output: 镜
CSS:
/* CSS content property */
.element::before {
content: "\00955C"; /* 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%95%9C
MD5:
2e256f10e2527e8d242fd82126c4acbf
SHA1:
b1ce576cc3cfeb78bec02993f79c6e86643543c4
Base64:
6ZWc