Unicode Finder

"你" U+4F60(CJK UNIFIED IDEOGRAPH-4F60)

U+4F60
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4F60

Programming

C
\u4F60
JavaScript
\u4F60
Java
\u4F60
Json
\u4F60
Python
\u4F60
Perl
\x{4F60}
PHP
\x{4F60}
Ruby
\u{4F60}
Rust
\u{4F60}
Go
\u4F60

Web

CSS
\004F60
HtmlDecimal
你
HtmlHexadecimal
你
Url
%E4%BD%A0

Code

MD5
df1fd9101108b40d26977a8d0bb9fd1e
Sha1
5630b886f9cd31702e7c1606eb1f62ab0c759063
Base64
5L2g

使用示例

Programming Languages

C:

char c = '\u4F60';
printf("%c\n", c);  // Output: 你

JavaScript:

const char = '\u4F60';
console.log(char);  // Output: 你

Java:

char c = '\u4F60';
System.out.println(c);  // Output: 你

JSON:

{"text": "\u4F60"}  // Value: 你

Python:

char = '\u4F60'
print(char)  # Output: 你

Perl:

my $char = "\x{4F60}";
print $char;  # Output: 你

PHP:

$char = "\x{4F60}";
echo $char;  // Output: 你

Ruby:

char = "\u{4F60}"
puts char  # Output: 你

Rust:

let c = '\u{4F60}';
println!("{}", c);  // Output: 你

Go:

char := '\u4F60'
fmt.Printf("%c\n", char)  // Output: 你

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F60";  /* Display: 你 */
}

HTML Decimal:

<p>HTML decimal: &#20320;</p>  <!-- Display: 你 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F60;</p>  <!-- Display: 你 -->

URL Encoding:

// 你 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%A0

Encodings

MD5:

df1fd9101108b40d26977a8d0bb9fd1e

SHA1:

5630b886f9cd31702e7c1606eb1f62ab0c759063

Base64:

5L2g