C:
char c = '\u5103';
printf("%c\n", c); // Output: 儃
JavaScript:
const char = '\u5103';
console.log(char); // Output: 儃
Java:
char c = '\u5103';
System.out.println(c); // Output: 儃
JSON:
{"text": "\u5103"} // Value: 儃
Python:
char = '\u5103'
print(char) # Output: 儃
Perl:
my $char = "\x{5103}";
print $char; # Output: 儃
PHP:
$char = "\x{5103}";
echo $char; // Output: 儃
Ruby:
char = "\u{5103}"
puts char # Output: 儃
Rust:
let c = '\u{5103}';
println!("{}", c); // Output: 儃
Go:
char := '\u5103'
fmt.Printf("%c\n", char) // Output: 儃
CSS:
/* CSS content property */
.element::before {
content: "\005103"; /* 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=%E5%84%83
MD5:
c42b17faa5ebe3c73f7b7989508d5909
SHA1:
0adacff4bc876c03b3fcd9def68e73f091a3edb0
Base64:
5YSD