C:
char c = '\u51B3';
printf("%c\n", c); // Output: 决
JavaScript:
const char = '\u51B3';
console.log(char); // Output: 决
Java:
char c = '\u51B3';
System.out.println(c); // Output: 决
JSON:
{"text": "\u51B3"} // Value: 决
Python:
char = '\u51B3'
print(char) # Output: 决
Perl:
my $char = "\x{51B3}";
print $char; # Output: 决
PHP:
$char = "\x{51B3}";
echo $char; // Output: 决
Ruby:
char = "\u{51B3}"
puts char # Output: 决
Rust:
let c = '\u{51B3}';
println!("{}", c); // Output: 决
Go:
char := '\u51B3'
fmt.Printf("%c\n", char) // Output: 决
CSS:
/* CSS content property */
.element::before {
content: "\0051B3"; /* 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%86%B3
MD5:
5b5afdad6019d9a402e3f42115510490
SHA1:
a888c4105bf2c6cb562e8398eece3e72d7946c13
Base64:
5Yaz