C:
char c = '\u670C';
printf("%c\n", c); // Output: 朌
JavaScript:
const char = '\u670C';
console.log(char); // Output: 朌
Java:
char c = '\u670C';
System.out.println(c); // Output: 朌
JSON:
{"text": "\u670C"} // Value: 朌
Python:
char = '\u670C'
print(char) # Output: 朌
Perl:
my $char = "\x{670C}";
print $char; # Output: 朌
PHP:
$char = "\x{670C}";
echo $char; // Output: 朌
Ruby:
char = "\u{670C}"
puts char # Output: 朌
Rust:
let c = '\u{670C}';
println!("{}", c); // Output: 朌
Go:
char := '\u670C'
fmt.Printf("%c\n", char) // Output: 朌
CSS:
/* CSS content property */
.element::before {
content: "\00670C"; /* 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%8C
MD5:
aa59dd96b3970d7720c2b275a9248ba2
SHA1:
4efa5a2643e0df66acb5f01d4482df3369cebc18
Base64:
5pyM