Unicode Finder

"弣" U+5F23(CJK UNIFIED IDEOGRAPH-5F23)

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

Programming

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

Web

CSS
\005F23
HtmlDecimal
弣
HtmlHexadecimal
弣
Url
%E5%BC%A3

Code

MD5
9860b94bde702f65eb663ac2dec93b82
Sha1
e4650a5ff0f459d7b1f5776ec72a85fe04c307a2
Base64
5byj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5F23';
console.log(char);  // Output: 弣

Java:

char c = '\u5F23';
System.out.println(c);  // Output: 弣

JSON:

{"text": "\u5F23"}  // Value: 弣

Python:

char = '\u5F23'
print(char)  # Output: 弣

Perl:

my $char = "\x{5F23}";
print $char;  # Output: 弣

PHP:

$char = "\x{5F23}";
echo $char;  // Output: 弣

Ruby:

char = "\u{5F23}"
puts char  # Output: 弣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24355;</p>  <!-- Display: 弣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F23;</p>  <!-- Display: 弣 -->

URL Encoding:

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

Encodings

MD5:

9860b94bde702f65eb663ac2dec93b82

SHA1:

e4650a5ff0f459d7b1f5776ec72a85fe04c307a2

Base64:

5byj