C:
char c = '\u6714';
printf("%c\n", c); // Output: 朔
JavaScript:
const char = '\u6714';
console.log(char); // Output: 朔
Java:
char c = '\u6714';
System.out.println(c); // Output: 朔
JSON:
{"text": "\u6714"} // Value: 朔
Python:
char = '\u6714'
print(char) # Output: 朔
Perl:
my $char = "\x{6714}";
print $char; # Output: 朔
PHP:
$char = "\x{6714}";
echo $char; // Output: 朔
Ruby:
char = "\u{6714}"
puts char # Output: 朔
Rust:
let c = '\u{6714}';
println!("{}", c); // Output: 朔
Go:
char := '\u6714'
fmt.Printf("%c\n", char) // Output: 朔
CSS:
/* CSS content property */
.element::before {
content: "\006714"; /* 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%9C%94
MD5:
816958d5f6614bb3a2b0da9f26cf49e7
SHA1:
5d544fe890af14b11d4a4239d37755e3c82672f7
Base64:
5pyU