C:
char c = '\u8907';
printf("%c\n", c); // Output: 複
JavaScript:
const char = '\u8907';
console.log(char); // Output: 複
Java:
char c = '\u8907';
System.out.println(c); // Output: 複
JSON:
{"text": "\u8907"} // Value: 複
Python:
char = '\u8907'
print(char) # Output: 複
Perl:
my $char = "\x{8907}";
print $char; # Output: 複
PHP:
$char = "\x{8907}";
echo $char; // Output: 複
Ruby:
char = "\u{8907}"
puts char # Output: 複
Rust:
let c = '\u{8907}';
println!("{}", c); // Output: 複
Go:
char := '\u8907'
fmt.Printf("%c\n", char) // Output: 複
CSS:
/* CSS content property */
.element::before {
content: "\008907"; /* 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=%E8%A4%87
MD5:
dedab6bab649ea0b30acd01fbfb46248
SHA1:
63c48c92d89ac6b6417ae1cadde7de8891fca032
Base64:
6KSH