C:
char c = '\u9671';
printf("%c\n", c); // Output: 陱
JavaScript:
const char = '\u9671';
console.log(char); // Output: 陱
Java:
char c = '\u9671';
System.out.println(c); // Output: 陱
JSON:
{"text": "\u9671"} // Value: 陱
Python:
char = '\u9671'
print(char) # Output: 陱
Perl:
my $char = "\x{9671}";
print $char; # Output: 陱
PHP:
$char = "\x{9671}";
echo $char; // Output: 陱
Ruby:
char = "\u{9671}"
puts char # Output: 陱
Rust:
let c = '\u{9671}';
println!("{}", c); // Output: 陱
Go:
char := '\u9671'
fmt.Printf("%c\n", char) // Output: 陱
CSS:
/* CSS content property */
.element::before {
content: "\009671"; /* 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%99%B1
MD5:
0ce1786927f6b765dd2159834a86ca34
SHA1:
40501ec315b32fced61f246de9c336d0c6b57547
Base64:
6Zmx