Unicode Finder

"彅" U+5F45(CJK UNIFIED IDEOGRAPH-5F45)

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

Programming

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

Web

CSS
\005F45
HtmlDecimal
彅
HtmlHexadecimal
彅
Url
%E5%BD%85

Code

MD5
cd6f761c4271792a7897572bec49c04c
Sha1
b2661735ad6d170fe6440d95d6bcdda71632e0c2
Base64
5b2F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F45';
console.log(char);  // Output: 彅

Java:

char c = '\u5F45';
System.out.println(c);  // Output: 彅

JSON:

{"text": "\u5F45"}  // Value: 彅

Python:

char = '\u5F45'
print(char)  # Output: 彅

Perl:

my $char = "\x{5F45}";
print $char;  # Output: 彅

PHP:

$char = "\x{5F45}";
echo $char;  // Output: 彅

Ruby:

char = "\u{5F45}"
puts char  # Output: 彅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24389;</p>  <!-- Display: 彅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F45;</p>  <!-- Display: 彅 -->

URL Encoding:

// 彅 URL encoding
https://unicodefinder.com/search.php?query=%E5%BD%85

Encodings

MD5:

cd6f761c4271792a7897572bec49c04c

SHA1:

b2661735ad6d170fe6440d95d6bcdda71632e0c2

Base64:

5b2F