C:
char c = '\u9D0E';
printf("%c\n", c); // Output: 鴎
JavaScript:
const char = '\u9D0E';
console.log(char); // Output: 鴎
Java:
char c = '\u9D0E';
System.out.println(c); // Output: 鴎
JSON:
{"text": "\u9D0E"} // Value: 鴎
Python:
char = '\u9D0E'
print(char) # Output: 鴎
Perl:
my $char = "\x{9D0E}";
print $char; # Output: 鴎
PHP:
$char = "\x{9D0E}";
echo $char; // Output: 鴎
Ruby:
char = "\u{9D0E}"
puts char # Output: 鴎
Rust:
let c = '\u{9D0E}';
println!("{}", c); // Output: 鴎
Go:
char := '\u9D0E'
fmt.Printf("%c\n", char) // Output: 鴎
CSS:
/* CSS content property */
.element::before {
content: "\009D0E"; /* 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=%E9%B4%8E
MD5:
fba0399479436995fed60ac98381efdd
SHA1:
1f78b1288966dec5498882f6c947cce7548473bf
Base64:
6bSO