Unicode Finder

"徐" U+5F90(CJK UNIFIED IDEOGRAPH-5F90)

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

Programming

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

Web

CSS
\005F90
HtmlDecimal
徐
HtmlHexadecimal
徐
Url
%E5%BE%90

Code

MD5
fb45f6531cf80721c4c458b7efc94e85
Sha1
ea38fe60e4f36c0f73792aaf540d051d64019d71
Base64
5b6Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F90';
console.log(char);  // Output: 徐

Java:

char c = '\u5F90';
System.out.println(c);  // Output: 徐

JSON:

{"text": "\u5F90"}  // Value: 徐

Python:

char = '\u5F90'
print(char)  # Output: 徐

Perl:

my $char = "\x{5F90}";
print $char;  # Output: 徐

PHP:

$char = "\x{5F90}";
echo $char;  // Output: 徐

Ruby:

char = "\u{5F90}"
puts char  # Output: 徐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24464;</p>  <!-- Display: 徐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F90;</p>  <!-- Display: 徐 -->

URL Encoding:

// 徐 URL encoding
https://unicodefinder.com/search.php?query=%E5%BE%90

Encodings

MD5:

fb45f6531cf80721c4c458b7efc94e85

SHA1:

ea38fe60e4f36c0f73792aaf540d051d64019d71

Base64:

5b6Q