Unicode Finder

"巰" U+5DF0(CJK UNIFIED IDEOGRAPH-5DF0)

U+5DF0
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5DF0

Programming

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

Web

CSS
\005DF0
HtmlDecimal
巰
HtmlHexadecimal
巰
Url
%E5%B7%B0

Code

MD5
832e51a0ffa7579b6cceaf0d5b558750
Sha1
1f759f23898000086a0f45994689428ba656f777
Base64
5bew

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DF0';
console.log(char);  // Output: 巰

Java:

char c = '\u5DF0';
System.out.println(c);  // Output: 巰

JSON:

{"text": "\u5DF0"}  // Value: 巰

Python:

char = '\u5DF0'
print(char)  # Output: 巰

Perl:

my $char = "\x{5DF0}";
print $char;  # Output: 巰

PHP:

$char = "\x{5DF0}";
echo $char;  // Output: 巰

Ruby:

char = "\u{5DF0}"
puts char  # Output: 巰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24048;</p>  <!-- Display: 巰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DF0;</p>  <!-- Display: 巰 -->

URL Encoding:

// 巰 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%B0

Encodings

MD5:

832e51a0ffa7579b6cceaf0d5b558750

SHA1:

1f759f23898000086a0f45994689428ba656f777

Base64:

5bew