Unicode Finder

"径" U+5F84(CJK UNIFIED IDEOGRAPH-5F84)

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

Programming

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

Web

CSS
\005F84
HtmlDecimal
径
HtmlHexadecimal
径
Url
%E5%BE%84

Code

MD5
94a5e58bec59647bcf40229b2a61b58c
Sha1
6f27834b83e8800ef45277ea1b56346950948f7e
Base64
5b6E

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F84';
console.log(char);  // Output: 径

Java:

char c = '\u5F84';
System.out.println(c);  // Output: 径

JSON:

{"text": "\u5F84"}  // Value: 径

Python:

char = '\u5F84'
print(char)  # Output: 径

Perl:

my $char = "\x{5F84}";
print $char;  # Output: 径

PHP:

$char = "\x{5F84}";
echo $char;  // Output: 径

Ruby:

char = "\u{5F84}"
puts char  # Output: 径

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24452;</p>  <!-- Display: 径 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F84;</p>  <!-- Display: 径 -->

URL Encoding:

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

Encodings

MD5:

94a5e58bec59647bcf40229b2a61b58c

SHA1:

6f27834b83e8800ef45277ea1b56346950948f7e

Base64:

5b6E