Unicode Finder

"关" U+5173(CJK UNIFIED IDEOGRAPH-5173)

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

Programming

C
\u5173
JavaScript
\u5173
Java
\u5173
Json
\u5173
Python
\u5173
Perl
\x{5173}
PHP
\x{5173}
Ruby
\u{5173}
Rust
\u{5173}
Go
\u5173

Web

CSS
\005173
HtmlDecimal
关
HtmlHexadecimal
关
Url
%E5%85%B3

Code

MD5
d58a55bceec7591f43232e958928ed10
Sha1
a3332f1c946792333ba42e4ffd437223b43c2c56
Base64
5YWz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5173';
console.log(char);  // Output: 关

Java:

char c = '\u5173';
System.out.println(c);  // Output: 关

JSON:

{"text": "\u5173"}  // Value: 关

Python:

char = '\u5173'
print(char)  # Output: 关

Perl:

my $char = "\x{5173}";
print $char;  # Output: 关

PHP:

$char = "\x{5173}";
echo $char;  // Output: 关

Ruby:

char = "\u{5173}"
puts char  # Output: 关

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005173";  /* Display: 关 */
}

HTML Decimal:

<p>HTML decimal: &#20851;</p>  <!-- Display: 关 -->

HTML Hexadecimal:

<p>HTML hex: &#x5173;</p>  <!-- Display: 关 -->

URL Encoding:

// 关 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%B3

Encodings

MD5:

d58a55bceec7591f43232e958928ed10

SHA1:

a3332f1c946792333ba42e4ffd437223b43c2c56

Base64:

5YWz