C:
char c = '\u6301';
printf("%c\n", c); // Output: 持
JavaScript:
const char = '\u6301';
console.log(char); // Output: 持
Java:
char c = '\u6301';
System.out.println(c); // Output: 持
JSON:
{"text": "\u6301"} // Value: 持
Python:
char = '\u6301'
print(char) # Output: 持
Perl:
my $char = "\x{6301}";
print $char; # Output: 持
PHP:
$char = "\x{6301}";
echo $char; // Output: 持
Ruby:
char = "\u{6301}"
puts char # Output: 持
Rust:
let c = '\u{6301}';
println!("{}", c); // Output: 持
Go:
char := '\u6301'
fmt.Printf("%c\n", char) // Output: 持
CSS:
/* CSS content property */
.element::before {
content: "\006301"; /* 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=%E6%8C%81
MD5:
f02e4e803b45a8b33dec77c81ea9416f
SHA1:
e81dbd2acbb1ffd5655990859460fc825d46f85d
Base64:
5oyB