C:
char c = '\u6862';
printf("%c\n", c); // Output: 桢
JavaScript:
const char = '\u6862';
console.log(char); // Output: 桢
Java:
char c = '\u6862';
System.out.println(c); // Output: 桢
JSON:
{"text": "\u6862"} // Value: 桢
Python:
char = '\u6862'
print(char) # Output: 桢
Perl:
my $char = "\x{6862}";
print $char; # Output: 桢
PHP:
$char = "\x{6862}";
echo $char; // Output: 桢
Ruby:
char = "\u{6862}"
puts char # Output: 桢
Rust:
let c = '\u{6862}';
println!("{}", c); // Output: 桢
Go:
char := '\u6862'
fmt.Printf("%c\n", char) // Output: 桢
CSS:
/* CSS content property */
.element::before {
content: "\006862"; /* 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%A2
MD5:
3e213bdf120f5273a274d1c2aebae18d
SHA1:
d21d24fa10e1d6a56bef4bdc4f0f8e08e862b903
Base64:
5qGi