Unicode Finder

"估" U+4F30(CJK UNIFIED IDEOGRAPH-4F30)

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

Programming

C
\u4F30
JavaScript
\u4F30
Java
\u4F30
Json
\u4F30
Python
\u4F30
Perl
\x{4F30}
PHP
\x{4F30}
Ruby
\u{4F30}
Rust
\u{4F30}
Go
\u4F30

Web

CSS
\004F30
HtmlDecimal
估
HtmlHexadecimal
估
Url
%E4%BC%B0

Code

MD5
685de0f2cad8fbf4595d25c2fe18f543
Sha1
bbf17c96dcea8189d655018317bd5003e667b28c
Base64
5Lyw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4F30';
console.log(char);  // Output: 估

Java:

char c = '\u4F30';
System.out.println(c);  // Output: 估

JSON:

{"text": "\u4F30"}  // Value: 估

Python:

char = '\u4F30'
print(char)  # Output: 估

Perl:

my $char = "\x{4F30}";
print $char;  # Output: 估

PHP:

$char = "\x{4F30}";
echo $char;  // Output: 估

Ruby:

char = "\u{4F30}"
puts char  # Output: 估

Rust:

let c = '\u{4F30}';
println!("{}", c);  // Output: 估

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F30";  /* Display: 估 */
}

HTML Decimal:

<p>HTML decimal: &#20272;</p>  <!-- Display: 估 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F30;</p>  <!-- Display: 估 -->

URL Encoding:

// 估 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%B0

Encodings

MD5:

685de0f2cad8fbf4595d25c2fe18f543

SHA1:

bbf17c96dcea8189d655018317bd5003e667b28c

Base64:

5Lyw