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