C:
char c = '\u5CC6';
printf("%c\n", c); // Output: 峆
JavaScript:
const char = '\u5CC6';
console.log(char); // Output: 峆
Java:
char c = '\u5CC6';
System.out.println(c); // Output: 峆
JSON:
{"text": "\u5CC6"} // Value: 峆
Python:
char = '\u5CC6'
print(char) # Output: 峆
Perl:
my $char = "\x{5CC6}";
print $char; # Output: 峆
PHP:
$char = "\x{5CC6}";
echo $char; // Output: 峆
Ruby:
char = "\u{5CC6}"
puts char # Output: 峆
Rust:
let c = '\u{5CC6}';
println!("{}", c); // Output: 峆
Go:
char := '\u5CC6'
fmt.Printf("%c\n", char) // Output: 峆
CSS:
/* CSS content property */
.element::before {
content: "\005CC6"; /* 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=%E5%B3%86
MD5:
7a4e645b8d2f8de9aef1546335348efc
SHA1:
eb21cc78681752c00bebe4bcc8ad4a4e2a2ecbb8
Base64:
5bOG