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