C:
char c = '\u6710';
printf("%c\n", c); // Output: 朐
JavaScript:
const char = '\u6710';
console.log(char); // Output: 朐
Java:
char c = '\u6710';
System.out.println(c); // Output: 朐
JSON:
{"text": "\u6710"} // Value: 朐
Python:
char = '\u6710'
print(char) # Output: 朐
Perl:
my $char = "\x{6710}";
print $char; # Output: 朐
PHP:
$char = "\x{6710}";
echo $char; // Output: 朐
Ruby:
char = "\u{6710}"
puts char # Output: 朐
Rust:
let c = '\u{6710}';
println!("{}", c); // Output: 朐
Go:
char := '\u6710'
fmt.Printf("%c\n", char) // Output: 朐
CSS:
/* CSS content property */
.element::before {
content: "\006710"; /* 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%9C%90
MD5:
5416290f13d54229d5b2fa4a9babd870
SHA1:
b88f8a7bc97d6ce7db10e975de4ceb542ae4edfd
Base64:
5pyQ