C:
char c = '\u6198';
printf("%c\n", c); // Output: 憘
JavaScript:
const char = '\u6198';
console.log(char); // Output: 憘
Java:
char c = '\u6198';
System.out.println(c); // Output: 憘
JSON:
{"text": "\u6198"} // Value: 憘
Python:
char = '\u6198'
print(char) # Output: 憘
Perl:
my $char = "\x{6198}";
print $char; # Output: 憘
PHP:
$char = "\x{6198}";
echo $char; // Output: 憘
Ruby:
char = "\u{6198}"
puts char # Output: 憘
Rust:
let c = '\u{6198}';
println!("{}", c); // Output: 憘
Go:
char := '\u6198'
fmt.Printf("%c\n", char) // Output: 憘
CSS:
/* CSS content property */
.element::before {
content: "\006198"; /* 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%98
MD5:
18c8fda842743cb14ea566eb09db6e29
SHA1:
02e6d9d41d808122b9cadc44c8890d510631363b
Base64:
5oaY