Unicode Finder

"徝" U+5F9D(CJK UNIFIED IDEOGRAPH-5F9D)

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

Programming

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

Web

CSS
\005F9D
HtmlDecimal
徝
HtmlHexadecimal
徝
Url
%E5%BE%9D

Code

MD5
0b1c2240d5c27a28ee24ce2a0d80890d
Sha1
ddf03257ba307b94f370f9074f016fe11e4e2612
Base64
5b6d

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F9D';
console.log(char);  // Output: 徝

Java:

char c = '\u5F9D';
System.out.println(c);  // Output: 徝

JSON:

{"text": "\u5F9D"}  // Value: 徝

Python:

char = '\u5F9D'
print(char)  # Output: 徝

Perl:

my $char = "\x{5F9D}";
print $char;  # Output: 徝

PHP:

$char = "\x{5F9D}";
echo $char;  // Output: 徝

Ruby:

char = "\u{5F9D}"
puts char  # Output: 徝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24477;</p>  <!-- Display: 徝 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F9D;</p>  <!-- Display: 徝 -->

URL Encoding:

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

Encodings

MD5:

0b1c2240d5c27a28ee24ce2a0d80890d

SHA1:

ddf03257ba307b94f370f9074f016fe11e4e2612

Base64:

5b6d