C:
char c = '\u5FAE';
printf("%c\n", c); // Output: 微
JavaScript:
const char = '\u5FAE';
console.log(char); // Output: 微
Java:
char c = '\u5FAE';
System.out.println(c); // Output: 微
JSON:
{"text": "\u5FAE"} // Value: 微
Python:
char = '\u5FAE'
print(char) # Output: 微
Perl:
my $char = "\x{5FAE}";
print $char; # Output: 微
PHP:
$char = "\x{5FAE}";
echo $char; // Output: 微
Ruby:
char = "\u{5FAE}"
puts char # Output: 微
Rust:
let c = '\u{5FAE}';
println!("{}", c); // Output: 微
Go:
char := '\u5FAE'
fmt.Printf("%c\n", char) // Output: 微
CSS:
/* CSS content property */
.element::before {
content: "\005FAE"; /* 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%BE%AE
MD5:
6997ae9a0949d2e1419f92fec0631a3a
SHA1:
9c66821126e14cf0a2c5252f648d501905e46377
Base64:
5b6u