Unicode Finder

"兰" U+5170(CJK UNIFIED IDEOGRAPH-5170)

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

Programming

C
\u5170
JavaScript
\u5170
Java
\u5170
Json
\u5170
Python
\u5170
Perl
\x{5170}
PHP
\x{5170}
Ruby
\u{5170}
Rust
\u{5170}
Go
\u5170

Web

CSS
\005170
HtmlDecimal
兰
HtmlHexadecimal
兰
Url
%E5%85%B0

Code

MD5
c98e3155d97bd67ee09d54eec87b5789
Sha1
d7d1b73438387f4cda925c72e7f3866e10af5cce
Base64
5YWw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5170';
console.log(char);  // Output: 兰

Java:

char c = '\u5170';
System.out.println(c);  // Output: 兰

JSON:

{"text": "\u5170"}  // Value: 兰

Python:

char = '\u5170'
print(char)  # Output: 兰

Perl:

my $char = "\x{5170}";
print $char;  # Output: 兰

PHP:

$char = "\x{5170}";
echo $char;  // Output: 兰

Ruby:

char = "\u{5170}"
puts char  # Output: 兰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005170";  /* Display: 兰 */
}

HTML Decimal:

<p>HTML decimal: &#20848;</p>  <!-- Display: 兰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5170;</p>  <!-- Display: 兰 -->

URL Encoding:

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

Encodings

MD5:

c98e3155d97bd67ee09d54eec87b5789

SHA1:

d7d1b73438387f4cda925c72e7f3866e10af5cce

Base64:

5YWw