C:
char c = '\u9130';
printf("%c\n", c); // Output: 鄰
JavaScript:
const char = '\u9130';
console.log(char); // Output: 鄰
Java:
char c = '\u9130';
System.out.println(c); // Output: 鄰
JSON:
{"text": "\u9130"} // Value: 鄰
Python:
char = '\u9130'
print(char) # Output: 鄰
Perl:
my $char = "\x{9130}";
print $char; # Output: 鄰
PHP:
$char = "\x{9130}";
echo $char; // Output: 鄰
Ruby:
char = "\u{9130}"
puts char # Output: 鄰
Rust:
let c = '\u{9130}';
println!("{}", c); // Output: 鄰
Go:
char := '\u9130'
fmt.Printf("%c\n", char) // Output: 鄰
CSS:
/* CSS content property */
.element::before {
content: "\009130"; /* 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%84%B0
MD5:
0e92dbd4568e3a6772679d4ceedf8706
SHA1:
da2ffa5b6052b70fb1871f16536c69094ff4a4e6
Base64:
6YSw