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