C:
char c = '\u6FC5';
printf("%c\n", c); // Output: 濅
JavaScript:
const char = '\u6FC5';
console.log(char); // Output: 濅
Java:
char c = '\u6FC5';
System.out.println(c); // Output: 濅
JSON:
{"text": "\u6FC5"} // Value: 濅
Python:
char = '\u6FC5'
print(char) # Output: 濅
Perl:
my $char = "\x{6FC5}";
print $char; # Output: 濅
PHP:
$char = "\x{6FC5}";
echo $char; // Output: 濅
Ruby:
char = "\u{6FC5}"
puts char # Output: 濅
Rust:
let c = '\u{6FC5}';
println!("{}", c); // Output: 濅
Go:
char := '\u6FC5'
fmt.Printf("%c\n", char) // Output: 濅
CSS:
/* CSS content property */
.element::before {
content: "\006FC5"; /* 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%BF%85
MD5:
c1d43db428e0e0599e07f7b1a4d2e23f
SHA1:
e1ba45fb2f38ee863e049285a5d7610800e1699f
Base64:
5r+F