C:
char c = '\u540D';
printf("%c\n", c); // Output: 名
JavaScript:
const char = '\u540D';
console.log(char); // Output: 名
Java:
char c = '\u540D';
System.out.println(c); // Output: 名
JSON:
{"text": "\u540D"} // Value: 名
Python:
char = '\u540D'
print(char) # Output: 名
Perl:
my $char = "\x{540D}";
print $char; # Output: 名
PHP:
$char = "\x{540D}";
echo $char; // Output: 名
Ruby:
char = "\u{540D}"
puts char # Output: 名
Rust:
let c = '\u{540D}';
println!("{}", c); // Output: 名
Go:
char := '\u540D'
fmt.Printf("%c\n", char) // Output: 名
CSS:
/* CSS content property */
.element::before {
content: "\00540D"; /* 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%90%8D
MD5:
4f8ca95e7b8ed340400a6e2be1265287
SHA1:
81d4aecdad11847cfbeee5c1a72e292a75dbc277
Base64:
5ZCN