Unicode Finder

"津" U+6D25(CJK UNIFIED IDEOGRAPH-6D25)

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

Programming

C
\u6D25
JavaScript
\u6D25
Java
\u6D25
Json
\u6D25
Python
\u6D25
Perl
\x{6D25}
PHP
\x{6D25}
Ruby
\u{6D25}
Rust
\u{6D25}
Go
\u6D25

Web

CSS
\006D25
HtmlDecimal
津
HtmlHexadecimal
津
Url
%E6%B4%A5

Code

MD5
bcfa2926fdd49ac9cfc2ed05811d6f9c
Sha1
a9bfd8f67e2608e2cb87103167eeec6d0e95ee28
Base64
5rSl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D25';
console.log(char);  // Output: 津

Java:

char c = '\u6D25';
System.out.println(c);  // Output: 津

JSON:

{"text": "\u6D25"}  // Value: 津

Python:

char = '\u6D25'
print(char)  # Output: 津

Perl:

my $char = "\x{6D25}";
print $char;  # Output: 津

PHP:

$char = "\x{6D25}";
echo $char;  // Output: 津

Ruby:

char = "\u{6D25}"
puts char  # Output: 津

Rust:

let c = '\u{6D25}';
println!("{}", c);  // Output: 津

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006D25";  /* Display: 津 */
}

HTML Decimal:

<p>HTML decimal: &#27941;</p>  <!-- Display: 津 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D25;</p>  <!-- Display: 津 -->

URL Encoding:

// 津 URL encoding
https://unicodefinder.com/search.php?query=%E6%B4%A5

Encodings

MD5:

bcfa2926fdd49ac9cfc2ed05811d6f9c

SHA1:

a9bfd8f67e2608e2cb87103167eeec6d0e95ee28

Base64:

5rSl