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