C:
char c = '\u6704';
printf("%c\n", c); // Output: 朄
JavaScript:
const char = '\u6704';
console.log(char); // Output: 朄
Java:
char c = '\u6704';
System.out.println(c); // Output: 朄
JSON:
{"text": "\u6704"} // Value: 朄
Python:
char = '\u6704'
print(char) # Output: 朄
Perl:
my $char = "\x{6704}";
print $char; # Output: 朄
PHP:
$char = "\x{6704}";
echo $char; // Output: 朄
Ruby:
char = "\u{6704}"
puts char # Output: 朄
Rust:
let c = '\u{6704}';
println!("{}", c); // Output: 朄
Go:
char := '\u6704'
fmt.Printf("%c\n", char) // Output: 朄
CSS:
/* CSS content property */
.element::before {
content: "\006704"; /* 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%84
MD5:
e800030fa0fc4cb37eed369848e7b1ac
SHA1:
1c471675a5254b02ce8f9bd68210df3f282cc96f
Base64:
5pyE