C:
char c = '\u5FB9';
printf("%c\n", c); // Output: 徹
JavaScript:
const char = '\u5FB9';
console.log(char); // Output: 徹
Java:
char c = '\u5FB9';
System.out.println(c); // Output: 徹
JSON:
{"text": "\u5FB9"} // Value: 徹
Python:
char = '\u5FB9'
print(char) # Output: 徹
Perl:
my $char = "\x{5FB9}";
print $char; # Output: 徹
PHP:
$char = "\x{5FB9}";
echo $char; // Output: 徹
Ruby:
char = "\u{5FB9}"
puts char # Output: 徹
Rust:
let c = '\u{5FB9}';
println!("{}", c); // Output: 徹
Go:
char := '\u5FB9'
fmt.Printf("%c\n", char) // Output: 徹
CSS:
/* CSS content property */
.element::before {
content: "\005FB9"; /* 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=%E5%BE%B9
MD5:
32562c6c9b32595d642c18bf5d047e29
SHA1:
e4b6b2a46636eb1e15265e3b78e758f3e10440c0
Base64:
5b65