Unicode Finder

"徛" U+5F9B(CJK UNIFIED IDEOGRAPH-5F9B)

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

Programming

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

Web

CSS
\005F9B
HtmlDecimal
徛
HtmlHexadecimal
徛
Url
%E5%BE%9B

Code

MD5
d25d4daa8328489ffe43bc7be3bcb413
Sha1
2c81d5615eeee04a562c3607f4315a52151ba37f
Base64
5b6b

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F9B';
console.log(char);  // Output: 徛

Java:

char c = '\u5F9B';
System.out.println(c);  // Output: 徛

JSON:

{"text": "\u5F9B"}  // Value: 徛

Python:

char = '\u5F9B'
print(char)  # Output: 徛

Perl:

my $char = "\x{5F9B}";
print $char;  # Output: 徛

PHP:

$char = "\x{5F9B}";
echo $char;  // Output: 徛

Ruby:

char = "\u{5F9B}"
puts char  # Output: 徛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24475;</p>  <!-- Display: 徛 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F9B;</p>  <!-- Display: 徛 -->

URL Encoding:

// 徛 URL encoding
https://unicodefinder.com/search.php?query=%E5%BE%9B

Encodings

MD5:

d25d4daa8328489ffe43bc7be3bcb413

SHA1:

2c81d5615eeee04a562c3607f4315a52151ba37f

Base64:

5b6b