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