C:
char c = '\u6722';
printf("%c\n", c); // Output: 朢
JavaScript:
const char = '\u6722';
console.log(char); // Output: 朢
Java:
char c = '\u6722';
System.out.println(c); // Output: 朢
JSON:
{"text": "\u6722"} // Value: 朢
Python:
char = '\u6722'
print(char) # Output: 朢
Perl:
my $char = "\x{6722}";
print $char; # Output: 朢
PHP:
$char = "\x{6722}";
echo $char; // Output: 朢
Ruby:
char = "\u{6722}"
puts char # Output: 朢
Rust:
let c = '\u{6722}';
println!("{}", c); // Output: 朢
Go:
char := '\u6722'
fmt.Printf("%c\n", char) // Output: 朢
CSS:
/* CSS content property */
.element::before {
content: "\006722"; /* 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%A2
MD5:
6651eae0826b22f270e25f16619836b2
SHA1:
34ac86b945ad466455950b62a5676e1c0e3baa98
Base64:
5pyi