Unicode Finder

"害" U+5BB3(CJK UNIFIED IDEOGRAPH-5BB3)

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

Programming

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

Web

CSS
\005BB3
HtmlDecimal
害
HtmlHexadecimal
害
Url
%E5%AE%B3

Code

MD5
ced249861a2dc3646bdf9f7099a56111
Sha1
8ffbe70704e4127680a42c2d21162379d2334556
Base64
5a6z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BB3';
console.log(char);  // Output: 害

Java:

char c = '\u5BB3';
System.out.println(c);  // Output: 害

JSON:

{"text": "\u5BB3"}  // Value: 害

Python:

char = '\u5BB3'
print(char)  # Output: 害

Perl:

my $char = "\x{5BB3}";
print $char;  # Output: 害

PHP:

$char = "\x{5BB3}";
echo $char;  // Output: 害

Ruby:

char = "\u{5BB3}"
puts char  # Output: 害

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23475;</p>  <!-- Display: 害 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BB3;</p>  <!-- Display: 害 -->

URL Encoding:

// 害 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%B3

Encodings

MD5:

ced249861a2dc3646bdf9f7099a56111

SHA1:

8ffbe70704e4127680a42c2d21162379d2334556

Base64:

5a6z