C:
char c = '\u4F87';
printf("%c\n", c); // Output: 侇
JavaScript:
const char = '\u4F87';
console.log(char); // Output: 侇
Java:
char c = '\u4F87';
System.out.println(c); // Output: 侇
JSON:
{"text": "\u4F87"} // Value: 侇
Python:
char = '\u4F87'
print(char) # Output: 侇
Perl:
my $char = "\x{4F87}";
print $char; # Output: 侇
PHP:
$char = "\x{4F87}";
echo $char; // Output: 侇
Ruby:
char = "\u{4F87}"
puts char # Output: 侇
Rust:
let c = '\u{4F87}';
println!("{}", c); // Output: 侇
Go:
char := '\u4F87'
fmt.Printf("%c\n", char) // Output: 侇
CSS:
/* CSS content property */
.element::before {
content: "\004F87"; /* 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=%E4%BE%87
MD5:
1bceab895dbdd667c68271e72598d4e2
SHA1:
ba530256d5151938dd295438cc9428f0d500a1f7
Base64:
5L6H