C:
char c = '\u6751';
printf("%c\n", c); // Output: 村
JavaScript:
const char = '\u6751';
console.log(char); // Output: 村
Java:
char c = '\u6751';
System.out.println(c); // Output: 村
JSON:
{"text": "\u6751"} // Value: 村
Python:
char = '\u6751'
print(char) # Output: 村
Perl:
my $char = "\x{6751}";
print $char; # Output: 村
PHP:
$char = "\x{6751}";
echo $char; // Output: 村
Ruby:
char = "\u{6751}"
puts char # Output: 村
Rust:
let c = '\u{6751}';
println!("{}", c); // Output: 村
Go:
char := '\u6751'
fmt.Printf("%c\n", char) // Output: 村
CSS:
/* CSS content property */
.element::before {
content: "\006751"; /* 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%9D%91
MD5:
79c5bcc15808f8cfbdce37a2b04c47a0
SHA1:
4211adc5ccc6296e3ba94b6ba0d767d951258200
Base64:
5p2R