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