Unicode Finder

"儯" U+512F(CJK UNIFIED IDEOGRAPH-512F)

U+512F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-512F

Programming

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

Web

CSS
\00512F
HtmlDecimal
儯
HtmlHexadecimal
儯
Url
%E5%84%AF

Code

MD5
085f01bb7b872ae0a443cdb1d9abdf02
Sha1
77213366c8336b9846fa5fc82ae2cbf398458c94
Base64
5YSv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u512F';
console.log(char);  // Output: 儯

Java:

char c = '\u512F';
System.out.println(c);  // Output: 儯

JSON:

{"text": "\u512F"}  // Value: 儯

Python:

char = '\u512F'
print(char)  # Output: 儯

Perl:

my $char = "\x{512F}";
print $char;  # Output: 儯

PHP:

$char = "\x{512F}";
echo $char;  // Output: 儯

Ruby:

char = "\u{512F}"
puts char  # Output: 儯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20783;</p>  <!-- Display: 儯 -->

HTML Hexadecimal:

<p>HTML hex: &#x512F;</p>  <!-- Display: 儯 -->

URL Encoding:

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

Encodings

MD5:

085f01bb7b872ae0a443cdb1d9abdf02

SHA1:

77213366c8336b9846fa5fc82ae2cbf398458c94

Base64:

5YSv