C:
char c = '\u6720';
printf("%c\n", c); // Output: 朠
JavaScript:
const char = '\u6720';
console.log(char); // Output: 朠
Java:
char c = '\u6720';
System.out.println(c); // Output: 朠
JSON:
{"text": "\u6720"} // Value: 朠
Python:
char = '\u6720'
print(char) # Output: 朠
Perl:
my $char = "\x{6720}";
print $char; # Output: 朠
PHP:
$char = "\x{6720}";
echo $char; // Output: 朠
Ruby:
char = "\u{6720}"
puts char # Output: 朠
Rust:
let c = '\u{6720}';
println!("{}", c); // Output: 朠
Go:
char := '\u6720'
fmt.Printf("%c\n", char) // Output: 朠
CSS:
/* CSS content property */
.element::before {
content: "\006720"; /* 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%A0
MD5:
0bca124f381fc464cba1be01eefad3a5
SHA1:
7a687004acc528752fa0d08f34594a3fe4237bf3
Base64:
5pyg