C:
char c = '\u6181';
printf("%c\n", c); // Output: 憁
JavaScript:
const char = '\u6181';
console.log(char); // Output: 憁
Java:
char c = '\u6181';
System.out.println(c); // Output: 憁
JSON:
{"text": "\u6181"} // Value: 憁
Python:
char = '\u6181'
print(char) # Output: 憁
Perl:
my $char = "\x{6181}";
print $char; # Output: 憁
PHP:
$char = "\x{6181}";
echo $char; // Output: 憁
Ruby:
char = "\u{6181}"
puts char # Output: 憁
Rust:
let c = '\u{6181}';
println!("{}", c); // Output: 憁
Go:
char := '\u6181'
fmt.Printf("%c\n", char) // Output: 憁
CSS:
/* CSS content property */
.element::before {
content: "\006181"; /* 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%86%81
MD5:
dc9bbd18c2c2861d67793c5edae2c243
SHA1:
8b1006269147dfb451af054c15c3bab9467bd8b4
Base64:
5oaB