C:
char c = '\u8CE2';
printf("%c\n", c); // Output: 賢
JavaScript:
const char = '\u8CE2';
console.log(char); // Output: 賢
Java:
char c = '\u8CE2';
System.out.println(c); // Output: 賢
JSON:
{"text": "\u8CE2"} // Value: 賢
Python:
char = '\u8CE2'
print(char) # Output: 賢
Perl:
my $char = "\x{8CE2}";
print $char; # Output: 賢
PHP:
$char = "\x{8CE2}";
echo $char; // Output: 賢
Ruby:
char = "\u{8CE2}"
puts char # Output: 賢
Rust:
let c = '\u{8CE2}';
println!("{}", c); // Output: 賢
Go:
char := '\u8CE2'
fmt.Printf("%c\n", char) // Output: 賢
CSS:
/* CSS content property */
.element::before {
content: "\008CE2"; /* 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=%E8%B3%A2
MD5:
ddacf2a2aa2cb3edb318b2bd55aeb15a
SHA1:
f7de2dcc5d9cabe86b66115e9fe11b8138cd7cde
Base64:
6LOi