C:
char c = '\u6730';
printf("%c\n", c); // Output: 朰
JavaScript:
const char = '\u6730';
console.log(char); // Output: 朰
Java:
char c = '\u6730';
System.out.println(c); // Output: 朰
JSON:
{"text": "\u6730"} // Value: 朰
Python:
char = '\u6730'
print(char) # Output: 朰
Perl:
my $char = "\x{6730}";
print $char; # Output: 朰
PHP:
$char = "\x{6730}";
echo $char; // Output: 朰
Ruby:
char = "\u{6730}"
puts char # Output: 朰
Rust:
let c = '\u{6730}';
println!("{}", c); // Output: 朰
Go:
char := '\u6730'
fmt.Printf("%c\n", char) // Output: 朰
CSS:
/* CSS content property */
.element::before {
content: "\006730"; /* 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%B0
MD5:
fffcde5c349808fc4dc5281d510ad6f4
SHA1:
41a0beed885638aa8008060dd1774eea696b985c
Base64:
5pyw