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