C:
char c = '\u6027';
printf("%c\n", c); // Output: 性
JavaScript:
const char = '\u6027';
console.log(char); // Output: 性
Java:
char c = '\u6027';
System.out.println(c); // Output: 性
JSON:
{"text": "\u6027"} // Value: 性
Python:
char = '\u6027'
print(char) # Output: 性
Perl:
my $char = "\x{6027}";
print $char; # Output: 性
PHP:
$char = "\x{6027}";
echo $char; // Output: 性
Ruby:
char = "\u{6027}"
puts char # Output: 性
Rust:
let c = '\u{6027}';
println!("{}", c); // Output: 性
Go:
char := '\u6027'
fmt.Printf("%c\n", char) // Output: 性
CSS:
/* CSS content property */
.element::before {
content: "\006027"; /* 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=%E6%80%A7
MD5:
2451516b8d985666e8ed221840be517e
SHA1:
6dc93688a0905a1e5e0603b7ac36422cb70008c5
Base64:
5oCn