C:
char c = '\u6169';
printf("%c\n", c); // Output: 慩
JavaScript:
const char = '\u6169';
console.log(char); // Output: 慩
Java:
char c = '\u6169';
System.out.println(c); // Output: 慩
JSON:
{"text": "\u6169"} // Value: 慩
Python:
char = '\u6169'
print(char) # Output: 慩
Perl:
my $char = "\x{6169}";
print $char; # Output: 慩
PHP:
$char = "\x{6169}";
echo $char; // Output: 慩
Ruby:
char = "\u{6169}"
puts char # Output: 慩
Rust:
let c = '\u{6169}';
println!("{}", c); // Output: 慩
Go:
char := '\u6169'
fmt.Printf("%c\n", char) // Output: 慩
CSS:
/* CSS content property */
.element::before {
content: "\006169"; /* 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%A9
MD5:
1ef71a6777c406e778a172824d810fd1
SHA1:
b1fa4c47160fa4ce4c4d03b5ee643b45d18fae1d
Base64:
5oWp