C:
char c = '\u6F5F';
printf("%c\n", c); // Output: 潟
JavaScript:
const char = '\u6F5F';
console.log(char); // Output: 潟
Java:
char c = '\u6F5F';
System.out.println(c); // Output: 潟
JSON:
{"text": "\u6F5F"} // Value: 潟
Python:
char = '\u6F5F'
print(char) # Output: 潟
Perl:
my $char = "\x{6F5F}";
print $char; # Output: 潟
PHP:
$char = "\x{6F5F}";
echo $char; // Output: 潟
Ruby:
char = "\u{6F5F}"
puts char # Output: 潟
Rust:
let c = '\u{6F5F}';
println!("{}", c); // Output: 潟
Go:
char := '\u6F5F'
fmt.Printf("%c\n", char) // Output: 潟
CSS:
/* CSS content property */
.element::before {
content: "\006F5F"; /* 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%BD%9F
MD5:
a617bb5f41626a40a52c6db4bd318627
SHA1:
8b53f4d71c28553d0f8ad2dd163458ff56031f7b
Base64:
5r2f