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