Unicode Finder

"录" U+5F55(CJK UNIFIED IDEOGRAPH-5F55)

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

Programming

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

Web

CSS
\005F55
HtmlDecimal
录
HtmlHexadecimal
录
Url
%E5%BD%95

Code

MD5
60a9f018f0b2eacbbd5eafa9cfc4800e
Sha1
a17b5df25a5296b3753f9cfe5072b0ac36ff1e0f
Base64
5b2V

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F55';
console.log(char);  // Output: 录

Java:

char c = '\u5F55';
System.out.println(c);  // Output: 录

JSON:

{"text": "\u5F55"}  // Value: 录

Python:

char = '\u5F55'
print(char)  # Output: 录

Perl:

my $char = "\x{5F55}";
print $char;  # Output: 录

PHP:

$char = "\x{5F55}";
echo $char;  // Output: 录

Ruby:

char = "\u{5F55}"
puts char  # Output: 录

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24405;</p>  <!-- Display: 录 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F55;</p>  <!-- Display: 录 -->

URL Encoding:

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

Encodings

MD5:

60a9f018f0b2eacbbd5eafa9cfc4800e

SHA1:

a17b5df25a5296b3753f9cfe5072b0ac36ff1e0f

Base64:

5b2V