C:
char c = '\u5167';
printf("%c\n", c); // Output: 內
JavaScript:
const char = '\u5167';
console.log(char); // Output: 內
Java:
char c = '\u5167';
System.out.println(c); // Output: 內
JSON:
{"text": "\u5167"} // Value: 內
Python:
char = '\u5167'
print(char) # Output: 內
Perl:
my $char = "\x{5167}";
print $char; # Output: 內
PHP:
$char = "\x{5167}";
echo $char; // Output: 內
Ruby:
char = "\u{5167}"
puts char # Output: 內
Rust:
let c = '\u{5167}';
println!("{}", c); // Output: 內
Go:
char := '\u5167'
fmt.Printf("%c\n", char) // Output: 內
CSS:
/* CSS content property */
.element::before {
content: "\005167"; /* 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%85%A7
MD5:
9a57185d793b706aad878a282bb61690
SHA1:
9c988e20c34411c74c67ba0d8d72f98b78070199
Base64:
5YWn