C:
char c = '\u6587';
printf("%c\n", c); // Output: 文
JavaScript:
const char = '\u6587';
console.log(char); // Output: 文
Java:
char c = '\u6587';
System.out.println(c); // Output: 文
JSON:
{"text": "\u6587"} // Value: 文
Python:
char = '\u6587'
print(char) # Output: 文
Perl:
my $char = "\x{6587}";
print $char; # Output: 文
PHP:
$char = "\x{6587}";
echo $char; // Output: 文
Ruby:
char = "\u{6587}"
puts char # Output: 文
Rust:
let c = '\u{6587}';
println!("{}", c); // Output: 文
Go:
char := '\u6587'
fmt.Printf("%c\n", char) // Output: 文
CSS:
/* CSS content property */
.element::before {
content: "\006587"; /* 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%96%87
MD5:
56b69ecf5143f36f8f772d49968d60f5
SHA1:
1d56b27a5e87fc5e904b4e2d4e69df8af994fbef
Base64:
5paH