C:
char c = '\u684B';
printf("%c\n", c); // Output: 桋
JavaScript:
const char = '\u684B';
console.log(char); // Output: 桋
Java:
char c = '\u684B';
System.out.println(c); // Output: 桋
JSON:
{"text": "\u684B"} // Value: 桋
Python:
char = '\u684B'
print(char) # Output: 桋
Perl:
my $char = "\x{684B}";
print $char; # Output: 桋
PHP:
$char = "\x{684B}";
echo $char; // Output: 桋
Ruby:
char = "\u{684B}"
puts char # Output: 桋
Rust:
let c = '\u{684B}';
println!("{}", c); // Output: 桋
Go:
char := '\u684B'
fmt.Printf("%c\n", char) // Output: 桋
CSS:
/* CSS content property */
.element::before {
content: "\00684B"; /* 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%8B
MD5:
177902956a78fabba2773a543590b9d5
SHA1:
9f8de4b9f913a2666792a84999006c5c9255e428
Base64:
5qGL