C:
char c = '\u6712';
printf("%c\n", c); // Output: 朒
JavaScript:
const char = '\u6712';
console.log(char); // Output: 朒
Java:
char c = '\u6712';
System.out.println(c); // Output: 朒
JSON:
{"text": "\u6712"} // Value: 朒
Python:
char = '\u6712'
print(char) # Output: 朒
Perl:
my $char = "\x{6712}";
print $char; # Output: 朒
PHP:
$char = "\x{6712}";
echo $char; // Output: 朒
Ruby:
char = "\u{6712}"
puts char # Output: 朒
Rust:
let c = '\u{6712}';
println!("{}", c); // Output: 朒
Go:
char := '\u6712'
fmt.Printf("%c\n", char) // Output: 朒
CSS:
/* CSS content property */
.element::before {
content: "\006712"; /* 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%92
MD5:
6bc3290e2345c4fbaa20c9485e31a403
SHA1:
fc3bf96db6a93db67edf3371c3740cf3912d047d
Base64:
5pyS