Unicode Finder

"偯" U+506F(CJK UNIFIED IDEOGRAPH-506F)

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

Programming

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

Web

CSS
\00506F
HtmlDecimal
偯
HtmlHexadecimal
偯
Url
%E5%81%AF

Code

MD5
f708dfde6a5e4fe1ea8628beffc3aac4
Sha1
7f7d8ce9a5f19eb722494b545016faf36e3ca120
Base64
5YGv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u506F';
console.log(char);  // Output: 偯

Java:

char c = '\u506F';
System.out.println(c);  // Output: 偯

JSON:

{"text": "\u506F"}  // Value: 偯

Python:

char = '\u506F'
print(char)  # Output: 偯

Perl:

my $char = "\x{506F}";
print $char;  # Output: 偯

PHP:

$char = "\x{506F}";
echo $char;  // Output: 偯

Ruby:

char = "\u{506F}"
puts char  # Output: 偯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20591;</p>  <!-- Display: 偯 -->

HTML Hexadecimal:

<p>HTML hex: &#x506F;</p>  <!-- Display: 偯 -->

URL Encoding:

// 偯 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%AF

Encodings

MD5:

f708dfde6a5e4fe1ea8628beffc3aac4

SHA1:

7f7d8ce9a5f19eb722494b545016faf36e3ca120

Base64:

5YGv