C:
char c = '\u845C';
printf("%c\n", c); // Output: 葜
JavaScript:
const char = '\u845C';
console.log(char); // Output: 葜
Java:
char c = '\u845C';
System.out.println(c); // Output: 葜
JSON:
{"text": "\u845C"} // Value: 葜
Python:
char = '\u845C'
print(char) # Output: 葜
Perl:
my $char = "\x{845C}";
print $char; # Output: 葜
PHP:
$char = "\x{845C}";
echo $char; // Output: 葜
Ruby:
char = "\u{845C}"
puts char # Output: 葜
Rust:
let c = '\u{845C}';
println!("{}", c); // Output: 葜
Go:
char := '\u845C'
fmt.Printf("%c\n", char) // Output: 葜
CSS:
/* CSS content property */
.element::before {
content: "\00845C"; /* 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=%E8%91%9C
MD5:
93d2b488735da846d8561f130a78e9a5
SHA1:
0a201dd5d774059677044282cd7e16fd23622ff9
Base64:
6JGc