Unicode Finder

"儏" U+510F(CJK UNIFIED IDEOGRAPH-510F)

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

Programming

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

Web

CSS
\00510F
HtmlDecimal
儏
HtmlHexadecimal
儏
Url
%E5%84%8F

Code

MD5
9e463809f8dc8f5745036169c5b40079
Sha1
aec5eb3d22eb27c70d81ba2ac8efdd794b0a8675
Base64
5YSP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u510F';
console.log(char);  // Output: 儏

Java:

char c = '\u510F';
System.out.println(c);  // Output: 儏

JSON:

{"text": "\u510F"}  // Value: 儏

Python:

char = '\u510F'
print(char)  # Output: 儏

Perl:

my $char = "\x{510F}";
print $char;  # Output: 儏

PHP:

$char = "\x{510F}";
echo $char;  // Output: 儏

Ruby:

char = "\u{510F}"
puts char  # Output: 儏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20751;</p>  <!-- Display: 儏 -->

HTML Hexadecimal:

<p>HTML hex: &#x510F;</p>  <!-- Display: 儏 -->

URL Encoding:

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

Encodings

MD5:

9e463809f8dc8f5745036169c5b40079

SHA1:

aec5eb3d22eb27c70d81ba2ac8efdd794b0a8675

Base64:

5YSP