C:
char c = '\u6195';
printf("%c\n", c); // Output: 憕
JavaScript:
const char = '\u6195';
console.log(char); // Output: 憕
Java:
char c = '\u6195';
System.out.println(c); // Output: 憕
JSON:
{"text": "\u6195"} // Value: 憕
Python:
char = '\u6195'
print(char) # Output: 憕
Perl:
my $char = "\x{6195}";
print $char; # Output: 憕
PHP:
$char = "\x{6195}";
echo $char; // Output: 憕
Ruby:
char = "\u{6195}"
puts char # Output: 憕
Rust:
let c = '\u{6195}';
println!("{}", c); // Output: 憕
Go:
char := '\u6195'
fmt.Printf("%c\n", char) // Output: 憕
CSS:
/* CSS content property */
.element::before {
content: "\006195"; /* 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%95
MD5:
c3774ffc11d1a2134ebde8b742c18e25
SHA1:
1f08fd41a03320444ad316f3f1f88b0e53fde9c5
Base64:
5oaV