C:
char c = '\u5117';
printf("%c\n", c); // Output: 儗
JavaScript:
const char = '\u5117';
console.log(char); // Output: 儗
Java:
char c = '\u5117';
System.out.println(c); // Output: 儗
JSON:
{"text": "\u5117"} // Value: 儗
Python:
char = '\u5117'
print(char) # Output: 儗
Perl:
my $char = "\x{5117}";
print $char; # Output: 儗
PHP:
$char = "\x{5117}";
echo $char; // Output: 儗
Ruby:
char = "\u{5117}"
puts char # Output: 儗
Rust:
let c = '\u{5117}';
println!("{}", c); // Output: 儗
Go:
char := '\u5117'
fmt.Printf("%c\n", char) // Output: 儗
CSS:
/* CSS content property */
.element::before {
content: "\005117"; /* 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%97
MD5:
759475f0d156c07f924379769aced9ab
SHA1:
9a07201f21745fcb704921626d5846c0a7522684
Base64:
5YSX