Unicode Finder

"佟" U+4F5F(CJK UNIFIED IDEOGRAPH-4F5F)

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

Programming

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

Web

CSS
\004F5F
HtmlDecimal
佟
HtmlHexadecimal
佟
Url
%E4%BD%9F

Code

MD5
6625179ed78650f0c3fbacc56151a1e0
Sha1
dcd96188be93c4430a01c5fd4f2e94d946b0d815
Base64
5L2f

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F5F';
console.log(char);  // Output: 佟

Java:

char c = '\u4F5F';
System.out.println(c);  // Output: 佟

JSON:

{"text": "\u4F5F"}  // Value: 佟

Python:

char = '\u4F5F'
print(char)  # Output: 佟

Perl:

my $char = "\x{4F5F}";
print $char;  # Output: 佟

PHP:

$char = "\x{4F5F}";
echo $char;  // Output: 佟

Ruby:

char = "\u{4F5F}"
puts char  # Output: 佟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20319;</p>  <!-- Display: 佟 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F5F;</p>  <!-- Display: 佟 -->

URL Encoding:

// 佟 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%9F

Encodings

MD5:

6625179ed78650f0c3fbacc56151a1e0

SHA1:

dcd96188be93c4430a01c5fd4f2e94d946b0d815

Base64:

5L2f