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