C:
char c = '\u5B8F';
printf("%c\n", c); // Output: 宏
JavaScript:
const char = '\u5B8F';
console.log(char); // Output: 宏
Java:
char c = '\u5B8F';
System.out.println(c); // Output: 宏
JSON:
{"text": "\u5B8F"} // Value: 宏
Python:
char = '\u5B8F'
print(char) # Output: 宏
Perl:
my $char = "\x{5B8F}";
print $char; # Output: 宏
PHP:
$char = "\x{5B8F}";
echo $char; // Output: 宏
Ruby:
char = "\u{5B8F}"
puts char # Output: 宏
Rust:
let c = '\u{5B8F}';
println!("{}", c); // Output: 宏
Go:
char := '\u5B8F'
fmt.Printf("%c\n", char) // Output: 宏
CSS:
/* CSS content property */
.element::before {
content: "\005B8F"; /* 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%AE%8F
MD5:
6d0d5d0a99dedcb4b13a62d47feb6883
SHA1:
378349708f38bc1e0b32dd495b5362580613c940
Base64:
5a6P