Unicode Finder

"伇" U+4F07(CJK UNIFIED IDEOGRAPH-4F07)

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

Programming

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

Web

CSS
\004F07
HtmlDecimal
伇
HtmlHexadecimal
伇
Url
%E4%BC%87

Code

MD5
310a38f300b58a53810acbc0ec34bc17
Sha1
2ac7a580c910d14d8e58331b03f250f1fcd63125
Base64
5LyH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F07';
console.log(char);  // Output: 伇

Java:

char c = '\u4F07';
System.out.println(c);  // Output: 伇

JSON:

{"text": "\u4F07"}  // Value: 伇

Python:

char = '\u4F07'
print(char)  # Output: 伇

Perl:

my $char = "\x{4F07}";
print $char;  # Output: 伇

PHP:

$char = "\x{4F07}";
echo $char;  // Output: 伇

Ruby:

char = "\u{4F07}"
puts char  # Output: 伇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20231;</p>  <!-- Display: 伇 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F07;</p>  <!-- Display: 伇 -->

URL Encoding:

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

Encodings

MD5:

310a38f300b58a53810acbc0ec34bc17

SHA1:

2ac7a580c910d14d8e58331b03f250f1fcd63125

Base64:

5LyH