C:
char c = '\u6566';
printf("%c\n", c); // Output: 敦
JavaScript:
const char = '\u6566';
console.log(char); // Output: 敦
Java:
char c = '\u6566';
System.out.println(c); // Output: 敦
JSON:
{"text": "\u6566"} // Value: 敦
Python:
char = '\u6566'
print(char) # Output: 敦
Perl:
my $char = "\x{6566}";
print $char; # Output: 敦
PHP:
$char = "\x{6566}";
echo $char; // Output: 敦
Ruby:
char = "\u{6566}"
puts char # Output: 敦
Rust:
let c = '\u{6566}';
println!("{}", c); // Output: 敦
Go:
char := '\u6566'
fmt.Printf("%c\n", char) // Output: 敦
CSS:
/* CSS content property */
.element::before {
content: "\006566"; /* 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%95%A6
MD5:
15d4dfa2664438e28788a16c393ab2ff
SHA1:
ff394a5e162984ab17481d719960f2a7159fdc7b
Base64:
5pWm