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