C:
char c = '\u6150';
printf("%c\n", c); // Output: 慐
JavaScript:
const char = '\u6150';
console.log(char); // Output: 慐
Java:
char c = '\u6150';
System.out.println(c); // Output: 慐
JSON:
{"text": "\u6150"} // Value: 慐
Python:
char = '\u6150'
print(char) # Output: 慐
Perl:
my $char = "\x{6150}";
print $char; # Output: 慐
PHP:
$char = "\x{6150}";
echo $char; // Output: 慐
Ruby:
char = "\u{6150}"
puts char # Output: 慐
Rust:
let c = '\u{6150}';
println!("{}", c); // Output: 慐
Go:
char := '\u6150'
fmt.Printf("%c\n", char) // Output: 慐
CSS:
/* CSS content property */
.element::before {
content: "\006150"; /* 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%85%90
MD5:
21255e4a744587efee4614569c8415e8
SHA1:
59656aebdce1655c94f53999113a64aa4d4dc2a1
Base64:
5oWQ