Unicode Finder

"北" U+5317(CJK UNIFIED IDEOGRAPH-5317)

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

Programming

C
\u5317
JavaScript
\u5317
Java
\u5317
Json
\u5317
Python
\u5317
Perl
\x{5317}
PHP
\x{5317}
Ruby
\u{5317}
Rust
\u{5317}
Go
\u5317

Web

CSS
\005317
HtmlDecimal
北
HtmlHexadecimal
北
Url
%E5%8C%97

Code

MD5
9e08f63a9cf2d4e24ee38a91d4b52d6a
Sha1
48c14622317306d23dc6acf3f82877461a378334
Base64
5YyX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5317';
console.log(char);  // Output: 北

Java:

char c = '\u5317';
System.out.println(c);  // Output: 北

JSON:

{"text": "\u5317"}  // Value: 北

Python:

char = '\u5317'
print(char)  # Output: 北

Perl:

my $char = "\x{5317}";
print $char;  # Output: 北

PHP:

$char = "\x{5317}";
echo $char;  // Output: 北

Ruby:

char = "\u{5317}"
puts char  # Output: 北

Rust:

let c = '\u{5317}';
println!("{}", c);  // Output: 北

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005317";  /* Display: 北 */
}

HTML Decimal:

<p>HTML decimal: &#21271;</p>  <!-- Display: 北 -->

HTML Hexadecimal:

<p>HTML hex: &#x5317;</p>  <!-- Display: 北 -->

URL Encoding:

// 北 URL encoding
https://unicodefinder.com/search.php?query=%E5%8C%97

Encodings

MD5:

9e08f63a9cf2d4e24ee38a91d4b52d6a

SHA1:

48c14622317306d23dc6acf3f82877461a378334

Base64:

5YyX