C:
char c = '\u6729';
printf("%c\n", c); // Output: 朩
JavaScript:
const char = '\u6729';
console.log(char); // Output: 朩
Java:
char c = '\u6729';
System.out.println(c); // Output: 朩
JSON:
{"text": "\u6729"} // Value: 朩
Python:
char = '\u6729'
print(char) # Output: 朩
Perl:
my $char = "\x{6729}";
print $char; # Output: 朩
PHP:
$char = "\x{6729}";
echo $char; // Output: 朩
Ruby:
char = "\u{6729}"
puts char # Output: 朩
Rust:
let c = '\u{6729}';
println!("{}", c); // Output: 朩
Go:
char := '\u6729'
fmt.Printf("%c\n", char) // Output: 朩
CSS:
/* CSS content property */
.element::before {
content: "\006729"; /* 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%A9
MD5:
edb05764f706d08b65f8b941ff597c3f
SHA1:
99df6971c010ff3af3ea9e9556fc774db899ab55
Base64:
5pyp