C:
char c = '\u9658';
printf("%c\n", c); // Output: 陘
JavaScript:
const char = '\u9658';
console.log(char); // Output: 陘
Java:
char c = '\u9658';
System.out.println(c); // Output: 陘
JSON:
{"text": "\u9658"} // Value: 陘
Python:
char = '\u9658'
print(char) # Output: 陘
Perl:
my $char = "\x{9658}";
print $char; # Output: 陘
PHP:
$char = "\x{9658}";
echo $char; // Output: 陘
Ruby:
char = "\u{9658}"
puts char # Output: 陘
Rust:
let c = '\u{9658}';
println!("{}", c); // Output: 陘
Go:
char := '\u9658'
fmt.Printf("%c\n", char) // Output: 陘
CSS:
/* CSS content property */
.element::before {
content: "\009658"; /* 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%98
MD5:
dac5aef94c74fb397cf6a6ce587decbf
SHA1:
6040f12bb8deee9046649c99c5c9368d67518a28
Base64:
6ZmY