Unicode Finder

"値" U+5024(CJK UNIFIED IDEOGRAPH-5024)

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

Programming

C
\u5024
JavaScript
\u5024
Java
\u5024
Json
\u5024
Python
\u5024
Perl
\x{5024}
PHP
\x{5024}
Ruby
\u{5024}
Rust
\u{5024}
Go
\u5024

Web

CSS
\005024
HtmlDecimal
値
HtmlHexadecimal
値
Url
%E5%80%A4

Code

MD5
90013fa35bb3c6d85ae1e9d2e5010ee8
Sha1
cb5dd49b97a515a380290de57df2adc8b4e2c73d
Base64
5YCk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5024';
console.log(char);  // Output: 値

Java:

char c = '\u5024';
System.out.println(c);  // Output: 値

JSON:

{"text": "\u5024"}  // Value: 値

Python:

char = '\u5024'
print(char)  # Output: 値

Perl:

my $char = "\x{5024}";
print $char;  # Output: 値

PHP:

$char = "\x{5024}";
echo $char;  // Output: 値

Ruby:

char = "\u{5024}"
puts char  # Output: 値

Rust:

let c = '\u{5024}';
println!("{}", c);  // Output: 値

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005024";  /* Display: 値 */
}

HTML Decimal:

<p>HTML decimal: &#20516;</p>  <!-- Display: 値 -->

HTML Hexadecimal:

<p>HTML hex: &#x5024;</p>  <!-- Display: 値 -->

URL Encoding:

// 値 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%A4

Encodings

MD5:

90013fa35bb3c6d85ae1e9d2e5010ee8

SHA1:

cb5dd49b97a515a380290de57df2adc8b4e2c73d

Base64:

5YCk