C:
char c = '\u672C';
printf("%c\n", c); // Output: 本
JavaScript:
const char = '\u672C';
console.log(char); // Output: 本
Java:
char c = '\u672C';
System.out.println(c); // Output: 本
JSON:
{"text": "\u672C"} // Value: 本
Python:
char = '\u672C'
print(char) # Output: 本
Perl:
my $char = "\x{672C}";
print $char; # Output: 本
PHP:
$char = "\x{672C}";
echo $char; // Output: 本
Ruby:
char = "\u{672C}"
puts char # Output: 本
Rust:
let c = '\u{672C}';
println!("{}", c); // Output: 本
Go:
char := '\u672C'
fmt.Printf("%c\n", char) // Output: 本
CSS:
/* CSS content property */
.element::before {
content: "\00672C"; /* 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%AC
MD5:
a4fb8425cd19033f465cd47d09504b62
SHA1:
d3cc0cab9c6384f4b1d996132970f0e608061fd6
Base64:
5pys