Unicode Finder

"儔" U+5114(CJK UNIFIED IDEOGRAPH-5114)

U+5114
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5114

Programming

C
\u5114
JavaScript
\u5114
Java
\u5114
Json
\u5114
Python
\u5114
Perl
\x{5114}
PHP
\x{5114}
Ruby
\u{5114}
Rust
\u{5114}
Go
\u5114

Web

CSS
\005114
HtmlDecimal
儔
HtmlHexadecimal
儔
Url
%E5%84%94

Code

MD5
a989e49151ba684510d8e69ecc4d7263
Sha1
8f253ae0136a8cd67cb3327d94def1e329b2ceb1
Base64
5YSU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5114';
console.log(char);  // Output: 儔

Java:

char c = '\u5114';
System.out.println(c);  // Output: 儔

JSON:

{"text": "\u5114"}  // Value: 儔

Python:

char = '\u5114'
print(char)  # Output: 儔

Perl:

my $char = "\x{5114}";
print $char;  # Output: 儔

PHP:

$char = "\x{5114}";
echo $char;  // Output: 儔

Ruby:

char = "\u{5114}"
puts char  # Output: 儔

Rust:

let c = '\u{5114}';
println!("{}", c);  // Output: 儔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005114";  /* Display: 儔 */
}

HTML Decimal:

<p>HTML decimal: &#20756;</p>  <!-- Display: 儔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5114;</p>  <!-- Display: 儔 -->

URL Encoding:

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

Encodings

MD5:

a989e49151ba684510d8e69ecc4d7263

SHA1:

8f253ae0136a8cd67cb3327d94def1e329b2ceb1

Base64:

5YSU