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