C:
char c = '\u6133';
printf("%c\n", c); // Output: 愳
JavaScript:
const char = '\u6133';
console.log(char); // Output: 愳
Java:
char c = '\u6133';
System.out.println(c); // Output: 愳
JSON:
{"text": "\u6133"} // Value: 愳
Python:
char = '\u6133'
print(char) # Output: 愳
Perl:
my $char = "\x{6133}";
print $char; # Output: 愳
PHP:
$char = "\x{6133}";
echo $char; // Output: 愳
Ruby:
char = "\u{6133}"
puts char # Output: 愳
Rust:
let c = '\u{6133}';
println!("{}", c); // Output: 愳
Go:
char := '\u6133'
fmt.Printf("%c\n", char) // Output: 愳
CSS:
/* CSS content property */
.element::before {
content: "\006133"; /* 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%84%B3
MD5:
32264c184467862f697ca88d1c2e3cac
SHA1:
8c0660663b39ce724deaf29fc4185e007e40d7b6
Base64:
5oSz