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