C:
char c = '\u6717';
printf("%c\n", c); // Output: 朗
JavaScript:
const char = '\u6717';
console.log(char); // Output: 朗
Java:
char c = '\u6717';
System.out.println(c); // Output: 朗
JSON:
{"text": "\u6717"} // Value: 朗
Python:
char = '\u6717'
print(char) # Output: 朗
Perl:
my $char = "\x{6717}";
print $char; # Output: 朗
PHP:
$char = "\x{6717}";
echo $char; // Output: 朗
Ruby:
char = "\u{6717}"
puts char # Output: 朗
Rust:
let c = '\u{6717}';
println!("{}", c); // Output: 朗
Go:
char := '\u6717'
fmt.Printf("%c\n", char) // Output: 朗
CSS:
/* CSS content property */
.element::before {
content: "\006717"; /* 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%97
MD5:
774af26773042361ab8445cf795bed5b
SHA1:
58dd8f63b7341acf84f42fb71e7a823c8a1a052c
Base64:
5pyX