Unicode Finder

"兗" U+5157(CJK UNIFIED IDEOGRAPH-5157)

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

Programming

C
\u5157
JavaScript
\u5157
Java
\u5157
Json
\u5157
Python
\u5157
Perl
\x{5157}
PHP
\x{5157}
Ruby
\u{5157}
Rust
\u{5157}
Go
\u5157

Web

CSS
\005157
HtmlDecimal
兗
HtmlHexadecimal
兗
Url
%E5%85%97

Code

MD5
455cbe7666d3278b26b6de1746e0a29d
Sha1
5a24f1e35dfa1295a004a32811d8e9369387437f
Base64
5YWX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5157';
console.log(char);  // Output: 兗

Java:

char c = '\u5157';
System.out.println(c);  // Output: 兗

JSON:

{"text": "\u5157"}  // Value: 兗

Python:

char = '\u5157'
print(char)  # Output: 兗

Perl:

my $char = "\x{5157}";
print $char;  # Output: 兗

PHP:

$char = "\x{5157}";
echo $char;  // Output: 兗

Ruby:

char = "\u{5157}"
puts char  # Output: 兗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005157";  /* Display: 兗 */
}

HTML Decimal:

<p>HTML decimal: &#20823;</p>  <!-- Display: 兗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5157;</p>  <!-- Display: 兗 -->

URL Encoding:

// 兗 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%97

Encodings

MD5:

455cbe7666d3278b26b6de1746e0a29d

SHA1:

5a24f1e35dfa1295a004a32811d8e9369387437f

Base64:

5YWX