Unicode Finder

"実" U+5B9F(CJK UNIFIED IDEOGRAPH-5B9F)

U+5B9F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5B9F

Programming

C
\u5B9F
JavaScript
\u5B9F
Java
\u5B9F
Json
\u5B9F
Python
\u5B9F
Perl
\x{5B9F}
PHP
\x{5B9F}
Ruby
\u{5B9F}
Rust
\u{5B9F}
Go
\u5B9F

Web

CSS
\005B9F
HtmlDecimal
実
HtmlHexadecimal
実
Url
%E5%AE%9F

Code

MD5
d6131c4595995f8c553ea664855a9d5f
Sha1
bc76cf43d92b0ef9df1f401124deb84cd6330498
Base64
5a6f

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B9F';
console.log(char);  // Output: 実

Java:

char c = '\u5B9F';
System.out.println(c);  // Output: 実

JSON:

{"text": "\u5B9F"}  // Value: 実

Python:

char = '\u5B9F'
print(char)  # Output: 実

Perl:

my $char = "\x{5B9F}";
print $char;  # Output: 実

PHP:

$char = "\x{5B9F}";
echo $char;  // Output: 実

Ruby:

char = "\u{5B9F}"
puts char  # Output: 実

Rust:

let c = '\u{5B9F}';
println!("{}", c);  // Output: 実

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005B9F";  /* Display: 実 */
}

HTML Decimal:

<p>HTML decimal: &#23455;</p>  <!-- Display: 実 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B9F;</p>  <!-- Display: 実 -->

URL Encoding:

// 実 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%9F

Encodings

MD5:

d6131c4595995f8c553ea664855a9d5f

SHA1:

bc76cf43d92b0ef9df1f401124deb84cd6330498

Base64:

5a6f