C:
char c = '\u6D0B';
printf("%c\n", c); // Output: 洋
JavaScript:
const char = '\u6D0B';
console.log(char); // Output: 洋
Java:
char c = '\u6D0B';
System.out.println(c); // Output: 洋
JSON:
{"text": "\u6D0B"} // Value: 洋
Python:
char = '\u6D0B'
print(char) # Output: 洋
Perl:
my $char = "\x{6D0B}";
print $char; # Output: 洋
PHP:
$char = "\x{6D0B}";
echo $char; // Output: 洋
Ruby:
char = "\u{6D0B}"
puts char # Output: 洋
Rust:
let c = '\u{6D0B}';
println!("{}", c); // Output: 洋
Go:
char := '\u6D0B'
fmt.Printf("%c\n", char) // Output: 洋
CSS:
/* CSS content property */
.element::before {
content: "\006D0B"; /* 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%B4%8B
MD5:
962067f787c562c022c6c171859cb301
SHA1:
2e750a2f58d7b4d160db6b0074617306aae91178
Base64:
5rSL