Unicode Finder

"弰" U+5F30(CJK UNIFIED IDEOGRAPH-5F30)

U+5F30
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5F30

Programming

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

Web

CSS
\005F30
HtmlDecimal
弰
HtmlHexadecimal
弰
Url
%E5%BC%B0

Code

MD5
0725278bb8061f7336c5de5bd5c422fb
Sha1
5da7d899b00e105282f956bafd4de4f2bcec5be8
Base64
5byw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5F30';
console.log(char);  // Output: 弰

Java:

char c = '\u5F30';
System.out.println(c);  // Output: 弰

JSON:

{"text": "\u5F30"}  // Value: 弰

Python:

char = '\u5F30'
print(char)  # Output: 弰

Perl:

my $char = "\x{5F30}";
print $char;  # Output: 弰

PHP:

$char = "\x{5F30}";
echo $char;  // Output: 弰

Ruby:

char = "\u{5F30}"
puts char  # Output: 弰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24368;</p>  <!-- Display: 弰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F30;</p>  <!-- Display: 弰 -->

URL Encoding:

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

Encodings

MD5:

0725278bb8061f7336c5de5bd5c422fb

SHA1:

5da7d899b00e105282f956bafd4de4f2bcec5be8

Base64:

5byw