C:
char c = '\u6102';
printf("%c\n", c); // Output: 愂
JavaScript:
const char = '\u6102';
console.log(char); // Output: 愂
Java:
char c = '\u6102';
System.out.println(c); // Output: 愂
JSON:
{"text": "\u6102"} // Value: 愂
Python:
char = '\u6102'
print(char) # Output: 愂
Perl:
my $char = "\x{6102}";
print $char; # Output: 愂
PHP:
$char = "\x{6102}";
echo $char; // Output: 愂
Ruby:
char = "\u{6102}"
puts char # Output: 愂
Rust:
let c = '\u{6102}';
println!("{}", c); // Output: 愂
Go:
char := '\u6102'
fmt.Printf("%c\n", char) // Output: 愂
CSS:
/* CSS content property */
.element::before {
content: "\006102"; /* 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%82
MD5:
883a35c99dfd0f3e38e949b3cfbbba34
SHA1:
819b63923e3ab804b446d4ee416da2a11f984854
Base64:
5oSC