C:
char c = '\u9631';
printf("%c\n", c); // Output: 阱
JavaScript:
const char = '\u9631';
console.log(char); // Output: 阱
Java:
char c = '\u9631';
System.out.println(c); // Output: 阱
JSON:
{"text": "\u9631"} // Value: 阱
Python:
char = '\u9631'
print(char) # Output: 阱
Perl:
my $char = "\x{9631}";
print $char; # Output: 阱
PHP:
$char = "\x{9631}";
echo $char; // Output: 阱
Ruby:
char = "\u{9631}"
puts char # Output: 阱
Rust:
let c = '\u{9631}';
println!("{}", c); // Output: 阱
Go:
char := '\u9631'
fmt.Printf("%c\n", char) // Output: 阱
CSS:
/* CSS content property */
.element::before {
content: "\009631"; /* 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=%E9%98%B1
MD5:
1bef32adaacd228288272e0ed44e637d
SHA1:
81b8cb36c9af1fa53f6a32bd0e1c6de8f119828b
Base64:
6Zix