C:
char c = '\u6D5A';
printf("%c\n", c); // Output: 浚
JavaScript:
const char = '\u6D5A';
console.log(char); // Output: 浚
Java:
char c = '\u6D5A';
System.out.println(c); // Output: 浚
JSON:
{"text": "\u6D5A"} // Value: 浚
Python:
char = '\u6D5A'
print(char) # Output: 浚
Perl:
my $char = "\x{6D5A}";
print $char; # Output: 浚
PHP:
$char = "\x{6D5A}";
echo $char; // Output: 浚
Ruby:
char = "\u{6D5A}"
puts char # Output: 浚
Rust:
let c = '\u{6D5A}';
println!("{}", c); // Output: 浚
Go:
char := '\u6D5A'
fmt.Printf("%c\n", char) // Output: 浚
CSS:
/* CSS content property */
.element::before {
content: "\006D5A"; /* 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%B5%9A
MD5:
98ce5d69f20c862377b1ac30c72a5cdc
SHA1:
a29e4dd08e79c968d583b8ddcac950dfbc74ad45
Base64:
5rWa