Unicode Finder

"屏" U+5C4F(CJK UNIFIED IDEOGRAPH-5C4F)

U+5C4F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5C4F

Programming

C
\u5C4F
JavaScript
\u5C4F
Java
\u5C4F
Json
\u5C4F
Python
\u5C4F
Perl
\x{5C4F}
PHP
\x{5C4F}
Ruby
\u{5C4F}
Rust
\u{5C4F}
Go
\u5C4F

Web

CSS
\005C4F
HtmlDecimal
屏
HtmlHexadecimal
屏
Url
%E5%B1%8F

Code

MD5
2424e4b2b78d15af2a6cfde8cf9e56b3
Sha1
a06f4e63cdef6fdddc0a888cda00e443611ff2d3
Base64
5bGP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C4F';
console.log(char);  // Output: 屏

Java:

char c = '\u5C4F';
System.out.println(c);  // Output: 屏

JSON:

{"text": "\u5C4F"}  // Value: 屏

Python:

char = '\u5C4F'
print(char)  # Output: 屏

Perl:

my $char = "\x{5C4F}";
print $char;  # Output: 屏

PHP:

$char = "\x{5C4F}";
echo $char;  // Output: 屏

Ruby:

char = "\u{5C4F}"
puts char  # Output: 屏

Rust:

let c = '\u{5C4F}';
println!("{}", c);  // Output: 屏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C4F";  /* Display: 屏 */
}

HTML Decimal:

<p>HTML decimal: &#23631;</p>  <!-- Display: 屏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C4F;</p>  <!-- Display: 屏 -->

URL Encoding:

// 屏 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%8F

Encodings

MD5:

2424e4b2b78d15af2a6cfde8cf9e56b3

SHA1:

a06f4e63cdef6fdddc0a888cda00e443611ff2d3

Base64:

5bGP