Unicode Finder

"伓" U+4F13(CJK UNIFIED IDEOGRAPH-4F13)

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

Programming

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

Web

CSS
\004F13
HtmlDecimal
伓
HtmlHexadecimal
伓
Url
%E4%BC%93

Code

MD5
6e1e3c20e2b69f0f2ffdeb44f268a323
Sha1
3bd30a26236b7640a0fc8056eebb646cababc7a1
Base64
5LyT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F13';
console.log(char);  // Output: 伓

Java:

char c = '\u4F13';
System.out.println(c);  // Output: 伓

JSON:

{"text": "\u4F13"}  // Value: 伓

Python:

char = '\u4F13'
print(char)  # Output: 伓

Perl:

my $char = "\x{4F13}";
print $char;  # Output: 伓

PHP:

$char = "\x{4F13}";
echo $char;  // Output: 伓

Ruby:

char = "\u{4F13}"
puts char  # Output: 伓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20243;</p>  <!-- Display: 伓 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F13;</p>  <!-- Display: 伓 -->

URL Encoding:

// 伓 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%93

Encodings

MD5:

6e1e3c20e2b69f0f2ffdeb44f268a323

SHA1:

3bd30a26236b7640a0fc8056eebb646cababc7a1

Base64:

5LyT