Unicode Finder

"偟" U+505F(CJK UNIFIED IDEOGRAPH-505F)

U+505F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-505F

Programming

C
\u505F
JavaScript
\u505F
Java
\u505F
Json
\u505F
Python
\u505F
Perl
\x{505F}
PHP
\x{505F}
Ruby
\u{505F}
Rust
\u{505F}
Go
\u505F

Web

CSS
\00505F
HtmlDecimal
偟
HtmlHexadecimal
偟
Url
%E5%81%9F

Code

MD5
7a22205af6c573b9d43ab21786971b8b
Sha1
d28ea97e4e43a8c21551337ba9a6f57196d08148
Base64
5YGf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u505F';
console.log(char);  // Output: 偟

Java:

char c = '\u505F';
System.out.println(c);  // Output: 偟

JSON:

{"text": "\u505F"}  // Value: 偟

Python:

char = '\u505F'
print(char)  # Output: 偟

Perl:

my $char = "\x{505F}";
print $char;  # Output: 偟

PHP:

$char = "\x{505F}";
echo $char;  // Output: 偟

Ruby:

char = "\u{505F}"
puts char  # Output: 偟

Rust:

let c = '\u{505F}';
println!("{}", c);  // Output: 偟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00505F";  /* Display: 偟 */
}

HTML Decimal:

<p>HTML decimal: &#20575;</p>  <!-- Display: 偟 -->

HTML Hexadecimal:

<p>HTML hex: &#x505F;</p>  <!-- Display: 偟 -->

URL Encoding:

// 偟 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%9F

Encodings

MD5:

7a22205af6c573b9d43ab21786971b8b

SHA1:

d28ea97e4e43a8c21551337ba9a6f57196d08148

Base64:

5YGf