Unicode Finder

"兌" U+514C(CJK UNIFIED IDEOGRAPH-514C)

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

Programming

C
\u514C
JavaScript
\u514C
Java
\u514C
Json
\u514C
Python
\u514C
Perl
\x{514C}
PHP
\x{514C}
Ruby
\u{514C}
Rust
\u{514C}
Go
\u514C

Web

CSS
\00514C
HtmlDecimal
兌
HtmlHexadecimal
兌
Url
%E5%85%8C

Code

MD5
4133b75f160c9c0663b3a1970f367823
Sha1
5fd9159abc7ff5db4c6b9440d40bcdeb20a4d712
Base64
5YWM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u514C';
console.log(char);  // Output: 兌

Java:

char c = '\u514C';
System.out.println(c);  // Output: 兌

JSON:

{"text": "\u514C"}  // Value: 兌

Python:

char = '\u514C'
print(char)  # Output: 兌

Perl:

my $char = "\x{514C}";
print $char;  # Output: 兌

PHP:

$char = "\x{514C}";
echo $char;  // Output: 兌

Ruby:

char = "\u{514C}"
puts char  # Output: 兌

Rust:

let c = '\u{514C}';
println!("{}", c);  // Output: 兌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00514C";  /* Display: 兌 */
}

HTML Decimal:

<p>HTML decimal: &#20812;</p>  <!-- Display: 兌 -->

HTML Hexadecimal:

<p>HTML hex: &#x514C;</p>  <!-- Display: 兌 -->

URL Encoding:

// 兌 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%8C

Encodings

MD5:

4133b75f160c9c0663b3a1970f367823

SHA1:

5fd9159abc7ff5db4c6b9440d40bcdeb20a4d712

Base64:

5YWM