C:
char c = '\u6705';
printf("%c\n", c); // Output: 朅
JavaScript:
const char = '\u6705';
console.log(char); // Output: 朅
Java:
char c = '\u6705';
System.out.println(c); // Output: 朅
JSON:
{"text": "\u6705"} // Value: 朅
Python:
char = '\u6705'
print(char) # Output: 朅
Perl:
my $char = "\x{6705}";
print $char; # Output: 朅
PHP:
$char = "\x{6705}";
echo $char; // Output: 朅
Ruby:
char = "\u{6705}"
puts char # Output: 朅
Rust:
let c = '\u{6705}';
println!("{}", c); // Output: 朅
Go:
char := '\u6705'
fmt.Printf("%c\n", char) // Output: 朅
CSS:
/* CSS content property */
.element::before {
content: "\006705"; /* 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%85
MD5:
45a30194706c7ebf24bb0f0c2423994e
SHA1:
319486045618eefcaca5f28a78b1cd2e6e152887
Base64:
5pyF