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