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