C:
char c = '\u6107';
printf("%c\n", c); // Output: 愇
JavaScript:
const char = '\u6107';
console.log(char); // Output: 愇
Java:
char c = '\u6107';
System.out.println(c); // Output: 愇
JSON:
{"text": "\u6107"} // Value: 愇
Python:
char = '\u6107'
print(char) # Output: 愇
Perl:
my $char = "\x{6107}";
print $char; # Output: 愇
PHP:
$char = "\x{6107}";
echo $char; // Output: 愇
Ruby:
char = "\u{6107}"
puts char # Output: 愇
Rust:
let c = '\u{6107}';
println!("{}", c); // Output: 愇
Go:
char := '\u6107'
fmt.Printf("%c\n", char) // Output: 愇
CSS:
/* CSS content property */
.element::before {
content: "\006107"; /* 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%87
MD5:
623cd1ac8688f9eeb7675d1ad071f9d9
SHA1:
aab1aecec47fe934bfa75cc94b28cbf61124624b
Base64:
5oSH