C:
char c = '\u6524';
printf("%c\n", c); // Output: 攤
JavaScript:
const char = '\u6524';
console.log(char); // Output: 攤
Java:
char c = '\u6524';
System.out.println(c); // Output: 攤
JSON:
{"text": "\u6524"} // Value: 攤
Python:
char = '\u6524'
print(char) # Output: 攤
Perl:
my $char = "\x{6524}";
print $char; # Output: 攤
PHP:
$char = "\x{6524}";
echo $char; // Output: 攤
Ruby:
char = "\u{6524}"
puts char # Output: 攤
Rust:
let c = '\u{6524}';
println!("{}", c); // Output: 攤
Go:
char := '\u6524'
fmt.Printf("%c\n", char) // Output: 攤
CSS:
/* CSS content property */
.element::before {
content: "\006524"; /* 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%94%A4
MD5:
fdeed6a81478f2d61e280e5e999d98b4
SHA1:
c8eb52b95527c006145ada60c3b6213faf042ca2
Base64:
5pSk