C:
char c = '\u6183';
printf("%c\n", c); // Output: 憃
JavaScript:
const char = '\u6183';
console.log(char); // Output: 憃
Java:
char c = '\u6183';
System.out.println(c); // Output: 憃
JSON:
{"text": "\u6183"} // Value: 憃
Python:
char = '\u6183'
print(char) # Output: 憃
Perl:
my $char = "\x{6183}";
print $char; # Output: 憃
PHP:
$char = "\x{6183}";
echo $char; // Output: 憃
Ruby:
char = "\u{6183}"
puts char # Output: 憃
Rust:
let c = '\u{6183}';
println!("{}", c); // Output: 憃
Go:
char := '\u6183'
fmt.Printf("%c\n", char) // Output: 憃
CSS:
/* CSS content property */
.element::before {
content: "\006183"; /* 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%83
MD5:
c4baf575f57a3b05778a583f50ed8727
SHA1:
71d2e457470c44d3f63f692edf7e40b2cda63562
Base64:
5oaD