C:
char c = '\u7EC6';
printf("%c\n", c); // Output: 细
JavaScript:
const char = '\u7EC6';
console.log(char); // Output: 细
Java:
char c = '\u7EC6';
System.out.println(c); // Output: 细
JSON:
{"text": "\u7EC6"} // Value: 细
Python:
char = '\u7EC6'
print(char) # Output: 细
Perl:
my $char = "\x{7EC6}";
print $char; # Output: 细
PHP:
$char = "\x{7EC6}";
echo $char; // Output: 细
Ruby:
char = "\u{7EC6}"
puts char # Output: 细
Rust:
let c = '\u{7EC6}';
println!("{}", c); // Output: 细
Go:
char := '\u7EC6'
fmt.Printf("%c\n", char) // Output: 细
CSS:
/* CSS content property */
.element::before {
content: "\007EC6"; /* 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=%E7%BB%86
MD5:
b3b2682579133673d3fe08c156d565dc
SHA1:
6a002d62cc7e755e42e5e5cfa4fe80adc2791869
Base64:
57uG