Unicode Finder

"侅" U+4F85(CJK UNIFIED IDEOGRAPH-4F85)

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

Programming

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

Web

CSS
\004F85
HtmlDecimal
侅
HtmlHexadecimal
侅
Url
%E4%BE%85

Code

MD5
17b487ac7c6a0c2edab15eafe4513fa3
Sha1
73aa9e45080012a4e707c4fc9f10570ca35e04c1
Base64
5L6F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F85';
console.log(char);  // Output: 侅

Java:

char c = '\u4F85';
System.out.println(c);  // Output: 侅

JSON:

{"text": "\u4F85"}  // Value: 侅

Python:

char = '\u4F85'
print(char)  # Output: 侅

Perl:

my $char = "\x{4F85}";
print $char;  # Output: 侅

PHP:

$char = "\x{4F85}";
echo $char;  // Output: 侅

Ruby:

char = "\u{4F85}"
puts char  # Output: 侅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20357;</p>  <!-- Display: 侅 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F85;</p>  <!-- Display: 侅 -->

URL Encoding:

// 侅 URL encoding
https://unicodefinder.com/search.php?query=%E4%BE%85

Encodings

MD5:

17b487ac7c6a0c2edab15eafe4513fa3

SHA1:

73aa9e45080012a4e707c4fc9f10570ca35e04c1

Base64:

5L6F