C:
char c = '\u6860';
printf("%c\n", c); // Output: 桠
JavaScript:
const char = '\u6860';
console.log(char); // Output: 桠
Java:
char c = '\u6860';
System.out.println(c); // Output: 桠
JSON:
{"text": "\u6860"} // Value: 桠
Python:
char = '\u6860'
print(char) # Output: 桠
Perl:
my $char = "\x{6860}";
print $char; # Output: 桠
PHP:
$char = "\x{6860}";
echo $char; // Output: 桠
Ruby:
char = "\u{6860}"
puts char # Output: 桠
Rust:
let c = '\u{6860}';
println!("{}", c); // Output: 桠
Go:
char := '\u6860'
fmt.Printf("%c\n", char) // Output: 桠
CSS:
/* CSS content property */
.element::before {
content: "\006860"; /* 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%A1%A0
MD5:
4a96d5f34ed8813ed5e034d302d78168
SHA1:
1087e011cb30a03999ff01383eaa5d2f2986e1a3
Base64:
5qGg